How to display post classes?
-
Dear Héctor
I am using your plugin to display the 5 most popular posts via shortcode inside a slider.
For some reason I need to have access to the post classes.The relevant part where I am struggeling:
[wpp post_html='<div class="[POST CLASSES HERE]">do other stuff</div>']
How can I achieve this?
I am currently trying like this in functions.php
if ( false !== strpos($html, '{postclass}') ) { $postclasses = get_post_class( $post_id ); // Replace {postclass} with the value of $postclasses $html = str_replace( '{postclass}', implode( ' ', $postclasses ), $html ); }
And I am getting a few classes. But for example I dont get the tag- classes of the individual post.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to display post classes?’ is closed to new replies.