apply_filters( 'comment_class', string[] $classes, string[] $css_class, string $comment_id, WP_Comment $comment, int|WP_Post $post )
- Since
- 2.7.0
Filters the returned CSS classes for the current comment.
Compatibility
- WordPress
- since 2.7.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$classesstring[]- An array of comment classes.
$css_classstring[]- An array of additional classes added to the list.
$comment_idstring- The comment ID as a numeric string.
$commentWP_Comment- The comment object.
$postint|WP_Post- The post ID or WP_Post object.
Where this hook fires · 1
wp-includes/comment-template.php:599get_comment_class()
Source code
* @param string[] $classes An array of comment classes. * @param string[] $css_class An array of additional classes added to the list. * @param string $comment_id The comment ID as a numeric string. * @param WP_Comment $comment The comment object. * @param int|WP_Post $post The post ID or WP_Post object. */ return apply_filters( 'comment_class', $classes, $css_class, $comment->comment_ID, $comment, $post );} /** * Retrieves the comment date of the current comment. * * @since 1.5.0Changelog
Introduced in 2.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.