Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Template Name: Display Featured Images from a Custome Post Type
- */
- ?>
- <?php
- $loop = new WP_Query( array( 'post_type' => 'homepageslides', 'posts_per_page' => 3));
- while ( $loop->have_posts() ) : $loop->the_post();
- ?>
- <div><?php echo the_post_thumbnail(full); ?></div>
- <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement