Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $the_query = new WP_Query( $args );
  2. if ( $the_query->have_posts() ) {
  3. while ( $the_query->have_posts() ) {
  4. $the_query->the_post();
  5. STUFF
  6. }
  7. wp_reset_postdata();
  8. }
  9.  
  10. if ($the_query->current_post == 0) {
  11. // retrieve featured image, title and content }
  12. else {
  13. // retrieve title only }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement