Guest User

Untitled

a guest
Feb 25th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php $args = array(
  2. 'post_type' => 'portfolio',
  3. 'posts_per_page' => 5
  4. );
  5.  
  6. $the_query = new WP_Query( $args );
  7.  
  8. if ( $the_query->have_posts() ) {
  9. while ( $the_query->have_posts() ) {
  10. $the_query->the_post(); ?>
  11.  
  12. <h2><?php the_title(); ?></h2>
  13. <?php the_content(); ?>
  14.  
  15. <?php } ?>
  16.  
  17. <?php wp_reset_postdata(); ?>
  18.  
  19. <?php } ?>
Add Comment
Please, Sign In to add comment