Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comments_array

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

Line Code
1431
1432      /**
1433       * Filters the comments array.
1434       *
1435       * @since 2.1.0
1436       *
1437       * @param array $comments Array of comments supplied to the comments template.
1438       * @param int   $post_ID  Post ID.
1439       */
1440      $wp_query->comments = apply_filters( 'comments_array', $comments_flat, $post->ID );
1441
1442      $comments = &$wp_query->comments;
1443      $wp_query->comment_count = count($wp_query->comments);
1444      $wp_query->max_num_comment_pages = $comment_query->max_num_pages;
1445
1446      if ( $separate_comments ) {
1447           $wp_query->comments_by_type = separate_comments($comments);
1448           $comments_by_type = &$wp_query->comments_by_type;
1449      } else {