Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <?php if (have_posts()): ?>
  2. <div class="postSection">
  3. <?php
  4. while (have_posts()) : the_post();
  5. $pdf_download = get_post_meta($post->ID, 'pdf_download', true);
  6. $pdf_label = get_post_meta($post->ID, 'pdf_label', true);
  7. ?>
  8. <div class='postBox <?php foreach ((get_the_category()) as $cats) {
  9. echo $cats->slug . ' ';
  10. } ?>'>
  11. <div class="postImage">
  12. <a href="<?php the_permalink(); ?>"
  13. title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail(); ?></a>
  14. </div>
  15. <div class="postContent">
  16. <h3><a href="<?php the_permalink(); ?>"
  17. title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
  18. </h3>
  19.  
  20. <div class="postExcerpt">
  21. <p><?php the_excerpt_rss(); ?>&nbsp;&nbsp;&nbsp;<a class="readMore"
  22. href="<?php the_permalink(); ?>"
  23. title="<?php the_title_attribute(); ?>">Read
  24. More</a></p>
  25. </div>
  26. </div>
  27. </div>
  28. <?php endwhile; ?>
  29. </div>
  30. <?php endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement