You appear to be a bot. Output may be restricted
Description
Return the post classes given the post id
Usage
$string = bw_get_post_class( $id );
Parameters
- $id
- ( ID ) required –
Returns
string of post classesSource
File name: oik/includes/bw_images.incLines:
1 to 5 of 5
function bw_get_post_class( $id ) { $classes = get_post_class( null, $id ); $classlist = implode( " ", $classes ); return( $classlist ); }View on GitHub View on Trac