Filters the returned CSS classes for the current comment.
Parameters
$classes
string[]- An array of comment classes.
$css_class
string[]- An array of additional classes added to the list.
$comment_id
string- The comment ID as a numeric string.
$comment
WP_Comment- The comment object.
$post
int|WP_Post- The post ID or WP_Post object.
Source
return apply_filters( 'comment_class', $classes, $css_class, $comment->comment_ID, $comment, $post );
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |
we will walk through how to use
apply_filters
withcomment_class
to customize the CSS classes for comments in WordPress.Examples One
Examples Two