Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




comment_class [ WordPress Function ]

comment_class ( $class = '', $comment_id = null, $post_id = null, $echo = true )
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
Defined at:



Generates semantic classes for each comment element

Source


<?php
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;
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics