Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. // Start the loop.
  3. $i = 0; while ( $the_query->have_posts() ) : $the_query->the_post();
  4. if ( $i == 1 ) : ?>
  5. <div class="col-md-12">
  6. <?php elseif ( $i == 2 ) : ?>
  7. <div class="col-md-6">
  8. <?php elseif ( $i == 3 ) : ?>
  9. <div class="col-md-4">
  10. <?php endif; ?>
  11.  
  12. <?php
  13. // Include the carousel template content.
  14. get_template_part( 'template-parts/content', get_post_format() ); ?>
  15.  
  16. </div>
  17.  
  18. <?php
  19. // End the loop.
  20. $i++; endwhile;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement