如何删除或修改WordPress后台登录页面标题后缀?
WordPress后台界面标题中都会带有“–wordpress”后缀,很多站长不想要这个后缀,或者改为其他标题…
WordPress后台界面标题中都会带有“–wordpress”后缀,很多站长不想要这个后缀,或者改为其他标题,那么如何删除或修改WordPress后台登录页面标题后缀?
在当前主题的functions.php文件中添加以下代码:
1、移除wordpress标题后缀
add_filter(‘login_title’, ‘remove_login_title’, 10, 2);
function remove_login_title($login_title, $title){
return $title.’ ‹ ‘.get_bloginfo(‘name’);
}
2、修改标题为其它文字
add_filter(‘login_title’, ‘remove_login_title’, 10, 2);
function remove_login_title(){
return ‘这不是登录界面,哈哈!!’;
}
以上代码二选一,保存文件即可。
类别:WordPress函数讲解、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!