post_class( string|string[] $css_class = '', int|WP_Post $post = null )
Displays the classes for the post container element.
Parameters
- $css_class
-
(Optional) One or more classes to add to the class list.<br>
Default value: ''
- $post
-
(Optional) Post ID or post object. Defaults to the global
$post
.Default value: null
Source
File: wp-includes/post-template.php
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 ) ) . '"';
}
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |