当前位置:首页 > CMS教程 > WordPress > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-03 20:25:04 浏览: 评论:0 

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

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

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

  1. // 获取评论用户的ip,参考wp-includes/comment.php 
  2. function ludou_getIP() { 
  3.  $ip = $_SERVER['REMOTE_ADDR']; 
  4.  $ip = preg_replace( '/[^0-9a-fA-F:., ]/'''$ip ); 
  5.     
  6.  return $ip
  7.  
  8. function ludou_only_one_comment( $commentdata ) { 
  9.  global $wpdb
  10.  $currentUser = wp_get_current_user(); 
  11.    
  12.  // 不限制管理员发表评论 
  13.  if(emptyempty($currentUser->roles) || !in_array('administrator'$currentUser->roles)) { 
  14.   $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;"); 
  15.    
  16.   if($bool
  17.    wp_die('本站每篇文章只允许评论一次。<a href="'.get_permalink($commentdata['comment_post_ID']).'">点此返回</a>'); 
  18.  } 
  19.    
  20.  return $commentdata
  21. add_action( 'preprocess_comment' , 'ludou_only_one_comment', 20); 

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

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

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

  1. function ludou_is_administrator($user_id) { 
  2.  $user = get_userdata($user_id); 
  3.  if(!emptyempty($user->roles) && in_array('administrator'$user->roles)) 
  4.   return 1; // 是管理员 
  5.  else 
  6.   return 0; // 非管理员 

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

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

  1. function ludou_is_administrator() { 
  2.  // wp_get_current_user函数仅限在主题的functions.php中使用 
  3.  $currentUser = wp_get_current_user(); 
  4.  
  5.  if(!emptyempty($currentUser->roles) && in_array('administrator'$currentUser->roles))  
  6.   return 1; // 是管理员 
  7.  else 
  8.   return 0; // 非管理员 
  9. }

Tags: WordPress限制非管理员

分享到: