Advertisement
Guest User

Display Featured Images from a Custome Post Type

a guest
Jul 3rd, 2012
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Display Featured Images from a Custome Post Type
  4. */
  5. ?>
  6.  
  7.  
  8. <?php
  9. $loop = new WP_Query( array( 'post_type' => 'homepageslides', 'posts_per_page' => 3));
  10. while ( $loop->have_posts() ) : $loop->the_post();
  11. ?>
  12. <div><?php echo the_post_thumbnail(full); ?></div>
  13. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement