Definition:
function comment_excerpt( $comment_ID = 0 ) {}
Display the excerpt of the current comment.
Parameters
- int $comment_ID: The ID of the comment for which to print the excerpt. Optional.
Defined filters
- comment_excerpt
apply_filters('comment_excerpt', get_comment_excerpt($comment_ID)
Source code
function comment_excerpt( $comment_ID = 0 ) { echo apply_filters('comment_excerpt', get_comment_excerpt($comment_ID) ); }
681
No comments yet... Be the first to leave a reply!