Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_list_comments_args

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
2091      /**
2092       * Filters the arguments used in retrieving the comment list.
2093       *
2094       * @since 4.0.0
2095       *
2096       * @see wp_list_comments()
2097       *
2098       * @param array $parsed_args An array of arguments for displaying comments.
2099       */
2100      $parsed_args = apply_filters( 'wp_list_comments_args', $parsed_args );
2101
2102      // Figure out what comments we'll be looping through ($_comments).
2103      if ( null !== $comments ) {
2104           $comments = (array) $comments;
2105           if ( empty( $comments ) ) {
2106                return;
2107           }
2108           if ( 'all' !== $parsed_args['type'] ) {
2109                $comments_by_type = separate_comments( $comments );