加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > CMS系统 > wordpress > 正文

Wordpress 去掉重复评论限制的办法

发布时间:2020-12-14 14:20:15 所属栏目:wordpress 来源:网络整理
导读:在wordpress中,已经默认加入了重复评论的限制,如果需要去掉这个限制,需要修改相应的源代码,具体如下: extract($commentdata,EXTR_SKIP); // Simple duplicate check // expected_slashed ($comment_post_ID,$comment_author,$comment_author_email,$com

在wordpress中,已经默认加入了重复评论的限制,如果需要去掉这个限制,需要修改相应的源代码,具体如下:

&网

wp-includes 文件夹下面 comment.php

veryhuo.com

function wp_allow_comment($commentdata) {
global $wpdb;
extract($commentdata,EXTR_SKIP);

// Simple duplicate check
// expected_slashed ($comment_post_ID,$comment_author,$comment_author_email,$comment_content)
$dupe = "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = '$comment_post_ID' AND comment_approved != 'trash' AND ( comment_author = '$comment_author' ";
if ( $comment_author_email )
$dupe .= "OR comment_author_email = '$comment_author_email' "; veryhuo.com
$dupe .= ") AND comment_content = '$comment_content' LIMIT 1";
// if ( $wpdb->get_var($dupe) ) {
// do_action( 'comment_duplicate_trigger',$commentdata );
// if ( defined('DOING_AJAX') )
// die( __('Duplicate comment detected; it looks as though you’ve already said that!') );

// wp_die( __('Duplicate comment detected; it looks as though you’ve already said that!') );
// }

do_action( 'check_comment_flood',$comment_author_IP,$comment_date_gmt );

if ( isset($user_id) && $user_id) {
$userdata = get_userdata($user_id);
$user = new WP_User($user_id);
$post_author = $wpdb->get_var($wpdb->prepare("SELECT post_author FROM $wpdb->posts WHERE ID = %d LIMIT 1",$comment_post_ID));
}

if ( isset($userdata) && ( $user_id == $post_author || $user->has_cap('moderate_comments') ) ) {
// The author and the admins get respect.
$approved = 1;

veryhuo.com


} else {
// Everyone else's comments will be checked.
if ( check_comment($comment_author,$comment_author_url,$comment_content,$comment_agent,$comment_type) )
$approved = 1;
else
$approved = 0;
if ( wp_blacklist_check($comment_author,$comment_agent) )
$approved = 'spam';
}

$approved = apply_filters( 'pre_comment_approved',$approved,$commentdata );
return $approved;
}

去掉下面部分即可 liehuo.net

// if ( $wpdb->get_var($dupe) ) {
// do_action( 'comment_duplicate_trigger',$commentdata );
// if ( defined('DOING_AJAX') )
// die( __('Duplicate comment detected; it looks as though you’ve already said that!') );

// wp_die( __('Duplicate comment detected; it looks as though you’ve already said that!') );
// }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读