如何删除WordPress后台标题后缀的方法?WordPress后台标题(title)默认后缀显示-WordPress,如果想隐藏这个后缀,可以将下面代码添加到当前主题functions.php中,即可删除这个后缀:
1、去除后台标题中的“- WordPress”
// 去除后台标题中的“—— WordPress”
add_filter('admin_title', 'zm_custom_admin_title', 10, 2);function zm_custom_admin_title($admin_title, $title){ return $title.' ‹ '.get_bloginfo('name');}
2、去除登录标题中的“- WordPress”
// 隐藏后台标题中的“WordPress”
add_filter('login_title', 'zm_custom_login_title', 10, 2); function zm_custom_login_title($login_title, $title){ return $title.' ‹ '.get_bloginfo('name');}
附:隐藏后台其它明显与WordPress相关的字样和图标
3、隐藏后台左下角WordPress标志。
// 屏蔽后台页脚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);