显示当前评论的摘录。
原型
comment_excerpt( int|WP_Comment $comment_ID )
参数
$comment_ID
(int|WP_Comment)
(Required)
WP_Comment或要为其打印摘录的注释的ID。默认当前评论。
源文件
路径:wp-includes/comment-template.php
<?php
...
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 int $comment_ID The comment ID.
*/
echo apply_filters( 'comment_excerpt', $comment_excerpt, $comment->comment_ID );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/comment_excerpt/