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; ?>