Get last post in category thumbnail
Try this: <?php $the_query = new WP_Query( ‘showposts=1&cat=55’ ); if($the_query->have_posts()) : while ($the_query -> have_posts()) : $the_query -> the_post();?> <a href=”https://wordpress.stackexchange.com/questions/144864/<?php the_permalink(); ?>”><?php the_post_thumbnail();?></a> <?php endwhile; endif; /* Restore original Post Data */ wp_reset_postdata();?> Replace cat=55 with the category ID you want and/or replace showposts=1 with the number of latest posts you want to show … Read more