Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <div id="tf-content">
  2. <div class="container"><!-- Container -->
  3. <div class="row"><!-- Row -->
  4. <?php
  5. $args = array(
  6. 'post-type' => 'portfolio'
  7. );
  8. $query = new WP_Query( $args );
  9. ?>
  10.  
  11. <?php if($query -> have_posts() ) : while( $query -> have_posts() ) : $query -> the_post(); ?>
  12.  
  13. <a href= "<?php the_permalink(); ?>">
  14. <div class="col-md-4 col-sm-12 col-lg-3 col-xl-2">
  15. <div class="post-block" style= "margin: 0;"> <!-- Post #1-->
  16. <div class="post-detail" style= "padding: 0;">
  17. <div class="img-wrap">
  18. <?php the_post_thumbnail(); ?>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </a>
  24. <?php endwhile; endif; wp_reset_postdata(); ?>
  25.  
  26. </div><!-- end Row -->
  27. </div><!-- End Container -->
  28.  
  29. $args = array(
  30. 'post_type' => 'portfolio'
  31. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement