Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_comments

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
422           $comments = $wpdb->get_results( $query );
423           /**
424            * Filter the comment query results.
425            *
426            * @since 3.1.0
427            *
428            * @param array            $comments An array of comments.
429            * @param WP_Comment_Query &$this    Current instance of WP_Comment_Query, passed by reference.
430            */
431           $comments = apply_filters_ref_array( 'the_comments', array( $comments, &$this ) );
432
433           wp_cache_add( $cache_key, $comments, 'comment' );
434
435           return $comments;
436      }
437
438      /**
439       * Used internally to generate an SQL string for searching across multiple columns
440       *