Multiple loops on the same page removing post tags
Sorry guys, stupid mistake, I forgot to reset the second loop using wp_reset_query, here is the working code, <?php query_posts(array(‘category_name’ => ‘test’)); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div><?php the_excerpt(); ?></div> <?php endwhile; ?> <?php endif; ?> <?php wp_reset_query(); ?> Thanx anyways though!