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

/**
 * WordPress 去除后台标题中的“—— WordPress”
 */
add_filter('admin_title', 'doocii_custom_admin_title', 10, 2);
function doocii_custom_admin_title($admin_title, $title){
    return $title.' ‹ '.get_bloginfo('name');
}

 

posted @ 2016-05-05 23:10  豆采笔记本  阅读(274)  评论(0编辑  收藏  举报