打開當(dāng)前主題的functions.php文件,添加
//評(píng)論超過一定數(shù)量關(guān)閉評(píng)論 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 //評(píng)論超過一定數(shù)量關(guān)閉評(píng)論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可以修改成自己需要的數(shù)字,表示一篇文章的評(píng)論如果超過這個(gè)數(shù)值,則自動(dòng)關(guān)閉評(píng)論。
未經(jīng)允許不得轉(zhuǎn)載:445IT之家 » wordpress:評(píng)論達(dá)到一定數(shù)量時(shí)自動(dòng)關(guān)閉評(píng)論的設(shè)