comment_excerpt_length

comment_excerpt_length

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

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('comment_excerpt_length') is found 1 times:

  • /wp-includes/comment-template.php line 665
    	 * @since 4.4.0
    	 *
    	 * @param int $comment_excerpt_length The amount of words you want to display in the comment excerpt.
    	 */
    	$comment_excerpt_length = apply_filters( 'comment_excerpt_length', $comment_excerpt_length );
    
    	$comment_excerpt = wp_trim_words( $comment_text, $comment_excerpt_length, '…' );
    
    	/**
    	 * Filters the retrieved comment excerpt.
    	 *