wordpress如何禁止某个用户发表评论?

小白近几个月建立了一个分享博客,现在流量正在稳步上升。为了提升访客停留网站的时长。我把一些重要的教程,设置成了需要回复才能看到密码。这个功能是知更鸟begin主题自带的,不必多说。而且网站开启了注册功能。这样就能检查哪些用户是在发表垃圾评论。垃圾评论全无营养,而且看着闹心。比如今天在后台就看到了有一个用户,拼命地回复无意义的字符。

wordpress如何禁止某个用户发表评论?_图片 No.1

这让我很生气。我就想,wordpress有没有像dz论坛一样可以禁言某个用户,让其发垃圾评论付出代价。找来找去,wordpress自身不带有这种功能。不过,在网上找到有大牛提供方法。小白我亲测有效。

1、在后端实现给用户资料页添加一个“禁止用户评论”的选项并实现其功能,代码如下,将代码添加到主题的function.php文件下。

/**
 * WordPress 禁止某些用户评论
 */
//在资料页面添加选项
function lxtx_usercmt_admin_init(){ 
	// 编辑用户资料
	add_action( 'edit_user_profile', 'lxtx_usercmt_edit_user_profile' );
	add_action( 'edit_user_profile_update', 'lxtx_usercmt_user_profile_update' ); 
}
add_action('admin_init', 'lxtx_usercmt_admin_init' );
//在个人资料页面添加一个复选框
function lxtx_usercmt_edit_user_profile() {
	if ( !current_user_can( 'edit_users' ) ) {
		return;
	} 
	global $user_id; 
	// 用户不能禁止自己
	$current_user = wp_get_current_user();
	$current_user_id = $current_user->ID;
	if ( $current_user_id == $user_id ) {
		return;
	}
	?>
	<!-- <h3>权限设置</h3> -->
	<table class="form-table">
	<tr>
		<th scope="row">禁止用户评论</th>
		<td><label for="lxtx_usercmt_ban"><input name="lxtx_usercmt_ban" type="checkbox" id="lxtx_usercmt_ban" 
		<?php if (lxtx_usercmt_is_user_banned( $user_id )){echo 'checked="checked"';} ?> /> 请谨慎操作,选中则禁止!</label></td>
	</tr>
	</table>
	<?php
}
//添加一个函数来将这个选项的值保存到数据库中
function lxtx_usercmt_user_profile_update() { 
	if ( !current_user_can( 'edit_users' ) ) {
		return;
	} 
	global $user_id; 
	// 用户不能禁止自己
	$current_user    = wp_get_current_user();
	$current_user_id = $current_user->ID;
	if ( $current_user_id == $user_id ) {
		return;
	} 
	// 锁定
	if( isset( $_POST['lxtx_usercmt_ban'] ) && $_POST['lxtx_usercmt_ban'] = 'on' ) {
		lxtx_usercmt_ban_user( $user_id );
	} else { // 解锁
		lxtx_usercmt_unban_user( $user_id );
	} 
}
//禁止用户
function lxtx_usercmt_ban_user( $user_id ) { 
	$old_status = lxtx_usercmt_is_user_banned( $user_id ); 
	// 更新状态
	if ( !$old_status ) {
		update_user_option( $user_id, 'lxtx_usercmt_banned', true, false );
	}
}
//解禁用户
function lxtx_usercmt_unban_user( $user_id ) { 
	$old_status = lxtx_usercmt_is_user_banned( $user_id ); 
	// 更新状态
	if ( $old_status ) {
		update_user_option( $user_id, 'lxtx_usercmt_banned', false, false );
	}
}
//判断用户是否被禁止
function lxtx_usercmt_is_user_banned( $user_id ) {
	return get_user_option( 'lxtx_usercmt_banned', $user_id, false );
}

2、在前台显示禁言这个提示,代码如下,同样是添加到function.php文件里:

//阻止已禁止的用户评论
function lxtx_usercmt_authenticate_user( $commentdata ) {
    if( lxtx_usercmt_is_user_banned( $commentdata['user_ID'] ) ){
        err(__('由于严重违反龙笑天下相关规定,该账号已被禁言'));
    }else{
        return $commentdata;
    }
}
if( is_user_logged_in() ){
    add_filter( 'preprocess_comment' , 'lxtx_usercmt_authenticate_user' );
}

3、然后就是后台操作禁言用户了。在后台“用户”项里搜索到对应的用户,点击“编辑”,进入到用户资料设置。

wordpress如何禁止某个用户发表评论?_图片 No.2

在页面的最下方,也就是头像设置的下面,你会发现多了一个禁言用户的选项,把勾打上。然后点击更新用户。就禁言成功了。

wordpress如何禁止某个用户发表评论?_图片 No.3

当被禁言的用户再次想要评论时,就会出现如下的提示,说明禁言的原因。(下图是原作者的效果,我并没有测试,懒!)

wordpress如何禁止某个用户发表评论?_图片 No.4

未经允许不得转载:自学控 - 自己建站也轻松 » wordpress如何禁止某个用户发表评论?

分享到: 更多 (0)
avatar
自己建站,一点一滴积累经验。

自学控[zixuekong.com]

关于本站

登录

忘记密码 ?