在主题的 functions.php 文件的尾部加入下面的代码,保存后刷新管理后台,可以看到左上角的“W”图标和页脚的“感谢使用wordpress创作”文字均已被移除。

//移除左上角W
function annointed_admin_bar_remove() {
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu('wp-logo');
}
add_action('wp_before_admin_bar_render', 'annointed_admin_bar_remove', 0);

//移除Wordpress后台“感谢使用wordpress创作”
function my_admin_footer_text(){
    return "";
}
function my_update_footer()
{
    return "";
}
add_filter( 'admin_footer_text', 'my_admin_footer_text', 10 );
add_filter( 'update_footer', 'my_update_footer', 50 );