隐藏wordpress中被暴露的管理员用户名
管理员用户在wordpress后台对评论进行了回复之后,在对应的页面中,可以查看到该管理员的登录名,如你是以admin登录的,并在后台回复了留言,在前台的对应的页面(你回复留言的位置)查阅html代码时,可以看到“comment-author-admin”的标记,相当于暴露了管理员的用户名,无疑增加了后台被爆破的可能性。
此时你需要隐藏此内容,可以用下面的代码实现(代码放入主题的functions.php中):
function psay_comment_class($psay){
$replace = array(
'comment-author-登录名' => 'comment-author-替换名',
);
$psay = str_replace(array_keys($replace), $replace, $psay);
return $psay;
}
add_filter('comment_class', psay_comment_class');