get_comment_type

过滤钩子
apply_filters( 'get_comment_type', $comment->comment_type, $comment->comment_ID, $comment )
参数
  • (string) $comment_type The type of comment, such as 'comment', 'pingback', or 'trackback'.
    Required:
  • (string) $comment_ID The comment ID as a numeric string.
    Required:
  • (WP_Comment) $comment The comment object.
    Required:
定义位置
相关勾子
get_comment_textget_comment_dateget_comment_timeget_commentget_avatar_comment_types
相关方法
get_comment_typeget_comment_timeget_comment_textget_comment_datecomment_typeget_comment_meta
引入
4.1.0
弃用
-

get_comment_type 函数返回一个评论的类型。它接收一个评论对象作为参数,并返回一个表示评论类型的字符串,如”comment”表示普通评论,”pingback”表示pingbacks。

过滤返回的评论类型。

return apply_filters( 'get_comment_type', $comment->comment_type, $comment->comment_ID, $comment );

常见问题

FAQs
查看更多 >