Recent Post thumbnail
-
I already have this code working that display 6 recent new post in my website.
<?php $thumbnails = get_posts('numberposts=6'); foreach ($thumbnails as $thumbnail) { if ( has_post_thumbnail($thumbnail->ID)) { echo '<a href="' . get_permalink( $thumbnail->ID ) . '" title="' . esc_attr( $thumbnail->post_title ) . '">'; echo get_the_post_thumbnail($thumbnail->ID, 'thumbnail'); echo '</a>'; } } ?>But I have one problem, like if I have a new post in my portfolio it well display also as my recent post. Can someone help me with the proper code that it will only show the recent post from a certain category or a parent category?
Thanks in advance.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Recent Post thumbnail’ is closed to new replies.