最近有個客户詢問小編如何讓文章發佈一個月之後自動關閉評論,其實這個功能實現起來很簡單,用 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 的系統時間不正確可能造成文章評論關閉時間不正確的情況) 。