Viewing 2 replies - 1 through 2 (of 2 total)
  • You have two loops in your category.php. The first loop is in <?php get_template_part( ‘featured’ ); ?> and the second is

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <!-- rest of the loop-->

    To fix your problem, try to add <?php rewind_posts(); ?> before <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> in second loop.

    Thread Starter wujekgreg

    (@wujekgreg)

    not working.

    if i disable <?php get_template_part( ‘featured’ ); ?>

    the category page, archives etc. working well.

    it must be something wrong in my featured slider template.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘multiple Query bug’ is closed to new replies.