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
1952      /**
1953       * Filters the arguments used in retrieving the comment list.
1954       *
1955       * @since 4.0.0
1956       *
1957       * @see wp_list_comments()
1958       *
1959       * @param array $r An array of arguments for displaying comments.
1960       */
1961      $r = apply_filters( 'wp_list_comments_args', $r );
1962
1963      // Figure out what comments we'll be looping through ($_comments)
1964      if ( null !== $comments ) {
1965           $comments = (array) $comments;
1966           if ( empty($comments) )
1967                return;
1968           if ( 'all' != $r['type'] ) {
1969                $comments_by_type = separate_comments($comments);
1970                if ( empty($comments_by_type[$r['type']]) )