Guest User

Untitled

a guest
May 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. /**
  3. * World's simplest secondary The Loop
  4. */
  5.  
  6. $posts = get_posts( $args );
  7.  
  8. if ( count( $posts ) ) :
  9. global $post;
  10. foreach ( $posts as $post ) :
  11. setup_postdata( $post );
  12. the_title( '<h1>', '</h1>' );
  13. endforeach;
  14. wp_reset_postdata();
  15. else :
  16. // Show something to notify there's no post
  17. endif;
Add Comment
Please, Sign In to add comment