Guest User

Untitled

a guest
Oct 21st, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php $the_query = new WP_Query( $args ); ?>
  2.  
  3. <?php if ( $the_query->have_posts() ) : ?>
  4.  
  5. <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
  6.  
  7. <?php endwhile; ?>
  8.  
  9. <?php wp_reset_postdata(); ?>
  10.  
  11. <?php else : ?>
  12.  
  13. <p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
  14.  
  15. <?php endif; ?>
Add Comment
Please, Sign In to add comment