wp_list_comments_args

wp_list_comments_args

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('wp_list_comments_args') is found 1 times:

  • /wp-includes/comment-template.php line 2248
    	 * @see wp_list_comments()
    	 *
    	 * @param array $parsed_args An array of arguments for displaying comments.
    	 */
    	$parsed_args = apply_filters( 'wp_list_comments_args', $parsed_args );
    
    	// Figure out what comments we'll be looping through ($_comments).
    	if ( null !== $comments ) {
    		$comments = (array) $comments;
    		if ( empty( $comments ) ) {
    			return;