Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: close_comments_for_post_types

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
2879           return $posts;
2880
2881      /**
2882       * Filters the list of post types to automatically close comments for.
2883       *
2884       * @since 3.2.0
2885       *
2886       * @param array $post_types An array of registered post types. Default array with 'post'.
2887       */
2888      $post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) );
2889      if ( ! in_array( $posts[0]->post_type, $post_types ) )
2890           return $posts;
2891
2892      $days_old = (int) get_option( 'close_comments_days_old' );
2893      if ( ! $days_old )
2894           return $posts;
2895
2896      if ( time() - strtotime( $posts[0]->post_date_gmt ) > ( $days_old * DAY_IN_SECONDS ) ) {
2897           $posts[0]->comment_status = 'closed';
 
Line Code
2919           return $open;
2920
2921      $days_old = (int) get_option('close_comments_days_old');
2922      if ( !$days_old )
2923           return $open;
2924
2925      $post = get_post($post_id);
2926
2927      /** This filter is documented in wp-includes/comment.php */
2928      $post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) );
2929      if ( ! in_array( $post->post_type, $post_types ) )
2930           return $open;
2931
2932      // Undated drafts should not show up as comments closed.
2933      if ( '0000-00-00 00:00:00' === $post->post_date_gmt ) {
2934           return $open;
2935      }
2936
2937      if ( time() - strtotime( $post->post_date_gmt ) > ( $days_old * DAY_IN_SECONDS ) )