WordPress 去除后台标题中的“—— WordPress”

时间:2016-01-13
默认情况下,在WordPress 后台页面的标题的尾部,都有 “—— WordPress”这一段,比如“仪表盘 < WordPress大学 —— WordPress”,有些朋友出于某些目的,需要去掉最后的 “—— WordPress”,其实方法比较简单,用到 admin_title 这个过滤挂钩。具体的代码如下:
/**
 * WordPress 去除后台标题中的“—— WordPress”
 * http://www.wpdaxue.com/remove-wordpress-from-admin-title.html
 * 参考代码见 https://core.trac.wordpress.org/browser/tags/4.2.2/src/wp-admin/admin-header.php#L44
 */
add_filter('admin_title', 'wpdx_custom_admin_title', 10, 2);
function wpdx_custom_admin_title($admin_title, $title){
return $title.' &lsaquo; '.get_bloginfo('name');
}
    
上一条:WordPress 自动去除img的width和height属性 下一条:WordPress网站优化插件youpzt-optimizer,给网站提速70%

相关文章

最新文章