La colonne suivante du Tutoriel de démarrage WordPress vous présentera comment supprimer le suffixe WordPress dans le titre d'arrière-plan. J'espère que cela sera utile aux amis dans le besoin !
Le suffixe par défaut du titre d'arrière-plan WordPress (titre) est affiché - WordPress Si vous souhaitez masquer ce suffixe, vous pouvez ajouter le code suivant aux fonctions du thème actuel. php pour le supprimer :
Supprimez "- WordPress" dans le titre de l'arrière-plan
// 去除后台标题中的“—— WordPress” add_filter('admin_title', 'zm_custom_admin_title', 10, 2); function zm_custom_admin_title($admin_title, $title){ return $title.' ‹ '.get_bloginfo('name'); }
Supprimez "- WordPress" dans le titre de connexion
// 隐藏后台标题中的“WordPress” add_filter('login_title', 'zm_custom_login_title', 10, 2); function zm_custom_login_title($login_title, $title){ return $title.' ‹ '.get_bloginfo('name'); }
Pièce jointe : Masquer l'autre arrière-plan. informations qui sont évidemment liées aux mots et icônes WordPress
Masquer le logo WordPress dans le coin supérieur gauche du backend
// 隐藏左上角WordPress标志 function hidden_admin_bar_remove() { global $wp_admin_bar; $wp_admin_bar->remove_menu('wp-logo'); } add_action('wp_before_admin_bar_render', 'hidden_admin_bar_remove', 0);
Masquer les informations de version de WordPress dans le pied de page du backend
// 屏蔽后台页脚WordPress版本信息 function change_footer_admin () {return '';} add_filter('admin_footer_text', 'change_footer_admin', 9999); function change_footer_version() {return '';} add_filter( 'update_footer', 'change_footer_version', 9999);
Supprimer des éléments dans le tableau de bord WordPress
function remove_dashboard_meta() { remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_primary', 'dashboard', 'side' ); remove_meta_box( 'dashboard_secondary', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' ); remove_meta_box( 'dashboard_recent_drafts', 'dashboard', 'side' ); remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_activity', 'dashboard', 'normal');//since 3.8 } add_action( 'admin_init', 'remove_dashboard_meta' );
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!