comment_class

Definition:
function comment_class( $class = '', $comment_id = null, $post_id = null, $echo = true ) {}

Generates semantic classes for each comment element

Parameters

  • string|array $class: One or more classes to add to the class list
  • int $comment_id: An optional comment ID
  • int $post_id: An optional post ID
  • bool $echo: Whether comment_class should echo or return

Source code

function comment_class( $class = '', $comment_id = null, $post_id = null, $echo = true ) {

	// Separates classes with a single space, collates classes for comment DIV

	$class = 'class="' . join( ' ', get_comment_class( $class, $comment_id, $post_id ) ) . '"';

	if ( $echo)

		echo $class;

	else

		return $class;

}

677

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: