核心提示:打开当前主题的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:评论达到一定数量时自动关闭评论的设