wordpress:评论达到一定数量时自动关闭评论的设

  核心提示:打开当前主题的functions.php文件,添加//评论超过一定数量关闭评论 function disable_comments( $posts ) { if ( !is_single() ) { return $posts; } if ( $posts[0]-comment_count50 ) …

  打开当前主题的functions.php文件,添加

//评论超过一定数量关闭评论 function disable_comments( $posts ) { if ( !is_single() ) { return $posts; } if ( $posts[0]->comment_count > 50 ) { $posts[0]->comment_status = 'disabled'; $posts[0]->ping_status = 'disabled'; } return $posts; } add_filter( 'the_posts', 'disable_comments' );
123456789101112 //评论超过一定数量关闭评论function disable_comments( $posts ) {if ( !is_single() ) {return $posts;}if ( $posts[0]->comment_count > 50 ) {$posts[0]->comment_status = 'disabled';$posts[0]->ping_status = 'disabled';}return $posts;}add_filter( 'the_posts', 'disable_comments' );

其中,50可以修改成自己需要的数字,表示一篇文章的评论如果超过这个数值,则自动关闭评论。

未经允许不得转载:445IT之家 » wordpress:评论达到一定数量时自动关闭评论的设

赞 (0) 打赏

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏