Advertisement
Guest User

header thumbnail

a guest
May 19th, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <div class="ootd-stream">
  2. <?php $new_query = new WP_Query( 'cat=your_category_id&showposts=2' );
  3. if( $new_query->have_posts() ): while( $new_query->have_posts ): $new_query->the_post();
  4.  
  5. the_post_thumbnail();
  6.  
  7. endwhile;
  8. endif;
  9. wp_reset_query();
  10. ?>
  11. <p>outfit of the day</p>
  12. </div><!-- end ootd-stream -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement