Definition:
function post_class( $class = '', $post_id = null ) {}
Display the classes for the post div.
Parameters
- string|array $class: One or more classes to add to the class list.
- int $post_id: An optional post ID.
Source code
function post_class( $class = '', $post_id = null ) { // Separates classes with a single space, collates classes for post DIV echo 'class="' . join( ' ', get_post_class( $class, $post_id ) ) . '"'; }
2555
No comments yet... Be the first to leave a reply!