Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php
  2. $args = array('post_type' => 'custom_post_name');
  3. $the_query = new WP_Query( $args );
  4. if ( $the_query->have_posts() ) :
  5. /* Start the Loop */
  6. while ( $the_query->have_posts() ) :
  7. $the_query->the_post();
  8. endwhile; ?>
  9. <?php the_post_thumbnail()?>
  10. <p class="title">
  11. <?php the_title()?>
  12. </p>
  13. <p>
  14. <?php the_excerpt();?>
  15. </p>
  16. <?php endif;
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement