WordPress 去掉管理面板左上角的“W”图标和页脚的“感谢使用wordpress创作”文字。

admin 阅读:309 2024-06-24

在主题的 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 );
声明

1、部分文章来源于网络,仅作为参考。
2、如果网站中图片和文字侵犯了您的版权,请联系1943759704@qq.com处理!