满草Blog

  • 首页
  • 技术交流
  • 免费资源
  • 个人随谈
  • 文章归档
  • 友情链接

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

  • 满草
  • 2024-10-07
  • 0

在主题的 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 );
© 2025 满草Blog
Theme by Wing
  • {{ item.name }}
  • {{ item.name }}