wp-includes/comment-template.php:703Displays the excerpt of the current comment.
$comment_idint|WP_Commentoptional0One hook fires while comment_excerpt() runs, in this order:
Filters the comment excerpt for display.
function comment_excerpt( $comment_id = 0 ) { $comment = get_comment( $comment_id ); $comment_excerpt = get_comment_excerpt( $comment ); /** * Filters the comment excerpt for display. * * @since 1.2.0 * @since 4.1.0 The `$comment_id` parameter was added. * * @param string $comment_excerpt The comment excerpt text. * @param string $comment_id The comment ID as a numeric string. */ echo apply_filters( 'comment_excerpt', $comment_excerpt, $comment->comment_ID );}Introduced in 1.2.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/comment-template.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.