Advertisement
Guest User

Untitled

a guest
Mar 10th, 2011
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <?php
  2. /*
  3. related posts list with excerpt and class active for single.php
  4. by alchymyth 10/03/2011
  5. update by EntarteteMuzak 10/03/2011
  6. */
  7. $this_post_id = $post->ID;
  8. $categs = get_the_category($post->ID);
  9. foreach($categs as $cate) { $post_cats[] = $cate->term_id; }
  10. $args = array(
  11. 'posts_per_page' => -1,
  12. 'category__in' => $post_cats
  13. );
  14. $this_query = new WP_query( $args ); ?>
  15. <?if($this_query->have_posts()) : ?>
  16. <?php $count = 0; ?>
  17. <?while($this_query->have_posts()) :
  18. $this_query->the_post(); ?>
  19. <?php $count++; ?>
  20. <?php if ($count%3== 0) : ?>
  21.  
  22. <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  23. <h3<?php if($post->ID == $this_post_id) echo ' class="active"'; ?>><a href="<?php the_permalink(); ?>" title="link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  24. <?php the_excerpt(); ?>
  25. </div>
  26.  
  27. <div class="clearfix"></div>
  28. <hr />
  29.  
  30. <?php else : ?>
  31.  
  32. <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  33. <h3<?php if($post->ID == $this_post_id) echo ' class="active"'; ?>><a href="<?php the_permalink(); ?>" title="link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  34. <?php the_excerpt(); ?>
  35. </div>
  36.  
  37. <?php endif; ?>
  38. <?endwhile; ?>
  39. <?endif; ?>
  40. <?wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement