Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php if (have_posts()) : while (have_posts()) : the_post(); $post_type = get_post_type( get_the_ID() );
  2.  
  3. if ($post_type == 'case_study') ?>
  4. <div class="col-sm-4 col-xs-12">
  5. <a href="<?php the_permalink(); ?>" class="gallery-box">
  6. <figure>
  7. <?php the_post_thumbnail('medium', array('class' => 'gallery__img')); ?>
  8. <figcaption class="gallery__caption">
  9. <div class="gallery__caption-in">
  10. <h3 class="gallery__tag"><?php the_title(); ?></h3>
  11. <h4 class="gallery__intro"><?php the_excerpt(); ?></h4>
  12. <img src="<?php echo get_template_directory_uri(); ?>/img/white-arrow.png" alt="" class="gallery__icon">
  13. </div>
  14. </figcaption>
  15. </figure>
  16. </a>
  17. </div>
  18.  
  19. <?php endwhile; ?>
  20. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement