comment_class

过滤钩子
apply_filters( 'comment_class', $classes, $css_class, $comment->comment_ID, $comment, $post )
参数
  • (string[]) $classes An array of comment classes.
    Required:
  • (string[]) $css_class An array of additional classes added to the list.
    Required:
  • (string) $comment_id The comment ID as a numeric string.
    Required:
  • (WP_Comment) $comment The comment object.
    Required:
  • (int|WP_Post) $post The post ID or WP_Post object.
    Required:
定义位置
相关勾子
comment_closedcomment_urlcomment_linkcomment_postcomment_author_rss
相关方法
comment_classget_comment_classcomments_rsscomment_existscomment_linkcomment_date
引入
2.7.0
弃用
-

comment_class – 这个过滤钩子用来为HTML输出中的评论添加自定义类。评论的ID和已经分配给评论的类被作为参数传递给过滤函数。

过滤返回的当前评论的CSS类。

return apply_filters( 'comment_class', $classes, $css_class, $comment->comment_ID, $comment, $post );

常见问题

FAQs
查看更多 >