最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - Comment restrictions Wodpress

programmeradmin0浏览0评论

I want to restrict new registered users on my WordPress site from writing comments until 3 days passed their registration date. What solution do you recommend? thanks in advanced.

I want to restrict new registered users on my WordPress site from writing comments until 3 days passed their registration date. What solution do you recommend? thanks in advanced.

Share Improve this question edited Sep 29, 2019 at 10:01 Salah asked Sep 29, 2019 at 8:31 SalahSalah 11 2
  • Is your site hosted on wordpress? If so: did you ask their support? – fuxia Commented Sep 29, 2019 at 9:22
  • no my cms is wordpress. – Salah Commented Sep 29, 2019 at 10:02
Add a comment  | 

1 Answer 1

Reset to default 0

The comments_open() boolean function return is filtered by 'comments_open'. Untested, pseudo code as a guide:

add_filter( 'comments_open', function( $open ) {
    $user = wp_get_current_user();
    $open = $open && $user && time() - mysql2date( 'U', $user->user_registered ) > 3 * DAY_IN_SECONDS;
    return $open;
} );

No guest users will be able to comment either, and I guess that is also what you want.

发布评论

评论列表(0)

  1. 暂无评论