get_comment_excerpt

过滤钩子
apply_filters( 'get_comment_excerpt', $excerpt, $comment->comment_ID, $comment )
参数
  • (string) $excerpt The comment excerpt text.
    Required:
  • (string) $comment_ID The comment ID as a numeric string.
    Required:
  • (WP_Comment) $comment The comment object.
    Required:
定义位置
相关勾子
comment_excerptget_comment_textget_the_excerptget_comments_numberget_comment_date
相关方法
get_comment_excerptcomment_excerptget_comment_textget_comment_metaget_comment_countget_the_excerpt
引入
4.1.0
弃用
-

get_comment_excerpt: 这个函数检索给定评论的评论内容的摘录: 该函数接受一个参数,即评论ID,并返回一个代表摘录的字符串。

过滤检索到的评论摘录。

return apply_filters( 'get_comment_excerpt', $excerpt, $comment->comment_ID, $comment );

常见问题

FAQs
查看更多 >