wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



comment_class › WordPress Function

Seit2.7.0
Veraltetn/v
comment_class ( $css_class = '', $comment = null, $post = null, $display = true )
Parameter: (4)
  • (string|string[]) $css_class Optional. One or more classes to add to the class list. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (int|WP_Comment) $comment Optional. Comment ID or WP_Comment object. Default current comment.
    Erforderlich: Nein
    Standard: null
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default current post.
    Erforderlich: Nein
    Standard: null
  • (bool) $display Optional. Whether to print or return the output. Default true.
    Erforderlich: Nein
    Standard: true
Gibt zurück:
  • (void|string) Void if `$display` argument is true, comment classes if `$display` is false.
Definiert in:
Codex:
Changelog:
  • 4.4.0

Generates semantic classes for each comment element.



Quellcode

function comment_class( $css_class = '', $comment = null, $post = null, $display = true ) {
	// Separates classes with a single space, collates classes for comment DIV.
	$css_class = 'class="' . implode( ' ', get_comment_class( $css_class, $comment, $post ) ) . '"';

	if ( $display ) {
		echo $css_class;
	} else {
		return $css_class;
	}
}