Advertisement
Guest User

Untitled

a guest
Jan 28th, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php $do_not_duplicate[] = 0; ?>
  2. <?php if ( have_posts() ) : while ( have_posts() ) : the_post();
  3. $category = get_the_category();
  4. if (!in_array($category[0]->cat_ID, $do_not_duplicate)) :
  5. $do_not_duplicate[] = $category[0]->cat_ID;
  6. ?>
  7. <!--[HTML for show the posts]-->
  8.  
  9. <?php endif; ?>
  10.  
  11. <?php endwhile; else: ?>
  12. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  13. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement