最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
WordPress 去除后台标题中WordPress的方法
时间:2022-06-25 18:46:57 编辑:袖梨 来源:一聚教程网
用到 admin_title 这个过滤挂钩。具体的代码如下:
/**
* 去除后台标题中的“—— WordPress”
*/
add_filter('admin_title', 'wpdx_custom_admin_title', 10, 2);
function wpdx_custom_admin_title($admin_title, $title){
return $title.' ‹ '.get_bloginfo('name');
}