Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. <div class="row item whitepaper-li">
  2. <div class="col-md-12">
  3. <!-- check if the post has thumbnail -->
  4. <?php if ( has_post_thumbnail($type->id)) {?>
  5.  
  6. <div class="col-xs-3">
  7. <a href="<?php the_permalink($type->id); ?>" title="<?php echo esc_attr($type->title); ?>" >
  8. <?php echo get_the_post_thumbnail($type->id,'thumbnail', array( 'class' => 'whitepapers-featuredimage' )); ?>
  9. </a>
  10. </div>
  11. <!-- if no thumbnail attached, use default -->
  12. <?php } else { ?>
  13.  
  14. <div class="col-xs-3">
  15. <a href="<?php the_permalink($type->id); ?>" title="<?php echo esc_attr($type->title);?>" >
  16. <img class="whitepapers-def-thumb" src="<?php echo esc_url(getPostTypeIcon( 'whitepapers' )); ?>"/>
  17. </a>
  18. </div>
  19.  
  20. <?php } ?>
  21. <div class="col-xs-9">
  22. <h2 class="h3">
  23.  
  24. <a href="<?php the_permalink($type->id) ?>"><?php echo esc_attr($type->title); ?>
  25. </a>
  26. </h2>
  27.  
  28.  
  29. <p>
  30. <?php echo esc_html($type->excerpt); ?> <a href="<?php the_permalink($type->id)?>">Continued</a>
  31. </p>
  32. </div>
  33. <hr>
  34. <?php if( array_key_exists('topics', $type->tags) ) foreach( $type->tags['topics'] as $topic ) { ?>
  35. <input type="hidden" value="<?php echo $topic->slug; ?>" name="<?php echo $topic->name; ?>" />
  36. <?php } ?>
  37. </div> <!-- end col-11 -->
  38. </div>
  39. <?php } ?>
  40. </div><!-- end content-wrap -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement