最近有個客戶詢問小編如何讓文章釋出一個月之後自動關閉評論,其實這個功能實現起來很簡單,用 time() 函式獲取當前時間然後減去文章釋出時間,然後判斷差是否大於設定的時限,如果大於則將評論關閉即可,詳細程式碼如下:

function close_comments( $posts ) {

                     if ( !is_single() ) { return $posts; }

                     if ( time() - strtotime( $posts[0]->post_date_gmt ) > ( 30 * 24 * 60 * 60 ) ) { //以秒為單位,設定時間為一個月
                     $posts[0]->comment_status = 'closed';
                     $posts[0]->ping_status    = 'closed';
                     }

             return $posts;
             }
             add_filter( 'the_posts', 'close_comments' );

將以上程式碼加入到當前使用的 WordPress 主題的 functinos.php 檔案即可實現文章釋出超過一個月後就自動關閉評論的功能 (PS:如果 php 的系統時間不正確可能造成文章評論關閉時間不正確的情況) 。