Guest User

Untitled

a guest
Mar 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <div id="related">
  2. <h3>Related reading</h3>
  3. <ul>
  4. <div class="tab">
  5. <?php if ($related_query->have_posts()):?>
  6. <?php $l=1;?>
  7. <?php while ($related_query->have_posts()) : $related_query->the_post(); ?>
  8. <?php if (($l == 4) || ($l == 8)) {echo "<li class=\"last\">";} else{ echo "<li>";}?>
  9. <a href="<?php the_permalink() ?>">
  10. <?php if(has_post_thumbnail()) : the_post_thumbnail('related-thumb'); else: ?>
  11. <?php $images =& get_children( 'post_type=attachment&post_mime_type=image&post_parent=' . $post->ID ); if ($images) {$firstImageSrc = wp_get_attachment_image_src(array_shift(array_keys($images)), medium, false);
  12. echo "<img src=\"{$firstImageSrc[0]}\" width=\"137\" height=\"117\" alt=\"";the_title();echo "\">";}?><?php the_title(); ?><?php endif; ?></a></li>
  13. <?php $l++; ?>
  14. <?php endwhile; ?>
  15. </div><!--tab-->
  16. </ul>
  17. <?php else: ?>
  18. <p>No related posts.</p>
  19. <?php endif; ?>
  20.  
  21. </div><!--related-->
Add Comment
Please, Sign In to add comment