欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

WordPress中限制非管理員用戶在文章后只能評論一次

 更新時間:2015年12月31日 14:14:48   作者:露兜  
這篇文章主要介紹了WordPress中限制非管理員用戶在文章后只能評論一次的方法,同時介紹了判斷用戶是否為管理員的方法,需要的朋友可以參考下

之前有網(wǎng)友提出,在WordPress中有沒有辦法實現(xiàn)每篇文章只允許用戶評論一次?

暫不說這個需求有沒有用,畢竟WordPress就是給有各種需求的人用的。這個功能實現(xiàn)起來也比較簡單,只需每次用戶發(fā)表的評論進數(shù)據(jù)庫之前,從當前文章的所有評論中查找是否有相同的用戶名或郵箱已經(jīng)發(fā)表過評論,如果有就跳到錯誤頁面即可。

實現(xiàn)代碼,放到當前主題的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();
 
 // 不限制管理員發(fā)表評論
 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);

這里沒有限制管理員的評論次數(shù),那我們順帶著看一下判斷用戶是否為管理員的方法:

判斷指定id的用戶是不是管理員

該需求實現(xiàn)起來非常簡單,幾行代碼搞定,分享一下:

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; // 非管理員
}

判斷當前登錄用戶是不是管理員

如果是判斷當前登錄用戶是不是管理員,可以使用下面的函數(shù):

function ludou_is_administrator() {
 // wp_get_current_user函數(shù)僅限在主題的functions.php中使用
 $currentUser = wp_get_current_user();

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

相關(guān)文章

最新評論