当前位置: 移动技术网 > IT编程>开发语言>PHP > WordPress中限制非管理员用户在文章后只能评论一次

WordPress中限制非管理员用户在文章后只能评论一次

2018年04月19日  | 移动技术网IT编程  | 我要评论

波多野结衣 熟女,描写桂花的作文,julia vins

之前有网友提出,在wordpress中有没有办法实现每篇文章只允许用户评论一次?

暂不说这个需求有没有用,毕竟wordpress就是给有各种需求的人用的。这个功能实现起来也比较简单,只需每次用户发表的评论进数据库之前,从当前文章的所有评论中查找是否有相同的用户名或邮箱已经发表过评论,如果有就跳到错误页面即可。

实现代码,放到当前主题的functions.php中即可(这里还增加了对ip的判断,更保险):

// 获取评论用户的ip,参考wp-includes/comment.php
function ludou_getip() {
 $ip = $_server['remote_addr'];
 $ip = preg_replace( '/[^0-9a-fa-f:., ]/', '', $ip );
  
 return $ip;
}

function ludou_only_one_comment( $commentdata ) {
 global $wpdb;
 $currentuser = wp_get_current_user();
 
 // 不限制管理员发表评论
 if(empty($currentuser->roles) || !in_array('administrator', $currentuser->roles)) {
  $bool = $wpdb->get_var("select comment_id from $wpdb->comments where comment_post_id = ".$commentdata['comment_post_id']." and (comment_author = '".$commentdata['comment_author']."' or comment_author_email = '".$commentdata['comment_author_email']."' or comment_author_ip = '".ludou_getip()."') limit 0, 1;");
 
  if($bool)
   wp_die('本站每篇文章只允许评论一次。<a href="'.get_permalink($commentdata['comment_post_id']).'">点此返回</a>');
 }
 
 return $commentdata;
}
add_action( 'preprocess_comment' , 'ludou_only_one_comment', 20);

这里没有限制管理员的评论次数,那我们顺带着看一下判断用户是否为管理员的方法:

判断指定id的用户是不是管理员

该需求实现起来非常简单,几行代码搞定,分享一下:

function ludou_is_administrator($user_id) {
 $user = get_userdata($user_id);
 if(!empty($user->roles) && in_array('administrator', $user->roles))
  return 1; // 是管理员
 else
  return 0; // 非管理员
}

判断当前登录用户是不是管理员

如果是判断当前登录用户是不是管理员,可以使用下面的函数:

function ludou_is_administrator() {
 // wp_get_current_user函数仅限在主题的functions.php中使用
 $currentuser = wp_get_current_user();

 if(!empty($currentuser->roles) && in_array('administrator', $currentuser->roles)) 
  return 1; // 是管理员
 else
  return 0; // 非管理员
}

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网