欢迎访问服务器技术网-www.fuwuqijishu.com

WordPress禁止冒充管理员对文章和网友评论问题

网站建设 fuwuqijishu 2年前 (2022-09-04) 127次浏览 0个评论 扫描二维码

如果我们有在使用WordPress程序建站或者经常到同类网友博客评论,应该是知道评论只需要用户名和邮箱就可以自动获取到管理员的头像然后评论。进而如果有人知道管理员邮箱其实是可以看到类似冒充管理员的头像评论,如果不仔细看还真以为是管理员评论。

如果我们需要禁止别人冒充管理员评论如何办呢?有一个简单的办法就是评论都需要人工审核,然后审核出来才可以看到。或者我们用下面办法禁止冒充。

//禁止冒充管理员评论
function usercheck($incoming_comment) {
$isSpam = 0;
if (trim($incoming_comment[‘comment_author’]) == ‘管理员昵称’)
$isSpam = 1;
if (trim($incoming_comment[‘comment_author_email’]) == ‘管理员邮箱’)
$isSpam = 1;
if(!$isSpam)
return $incoming_comment;
err(‘你咋不上天呢?还敢冒充管理员!’);
}
if(!is_user_logged_in())
add_filter( ‘preprocess_comment’, ‘usercheck’ );

将代码加入到当前主题Functions.php文件中就可以实现。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2122.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900