根据wordpress中的注释删除用户

时间:2016-07-02 02:42:52

标签: php mysql wordpress

早上好,大家......

我的WordPress网站上有一个用户讨论论坛页面,为了发表评论,用户必须先注册。但我已经看到许多用户进行了注册,但在一个月内没有发布单个评论。所以我必须手动检查评论,然后删除该特定用户。

我的问题是,有没有办法自动删除一个月内没有发表任何评论的用户。

任何人都可以帮助我完成任务。

1 个答案:

答案 0 :(得分:2)

<?php
global $current_user;
$args = array('user_id' => $current_user->ID);
$usercomment = get_comments($args);
if(count($usercomment) < 1){
require_once(ABSPATH.'wp-admin/includes/user.php' );
$current_user = wp_get_current_user();
wp_delete_user( $current_user->ID );
} 
else {
            //
 }

检查此代码,如果用户评论小于1,它将删除用户。我thnik它会给你的想法