Title: Two Loops integrated &#8211; issue
Last modified: August 19, 2016

---

# Two Loops integrated – issue

 *  [riccardo.malesani](https://wordpress.org/support/users/riccardomalesani/)
 * (@riccardomalesani)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/two-loops-integrated-issue/)
 * Hi, I want to expose an issue concerning the integration of two Loops.
    I have
   this slider (come from WP Coda Slider plugin), which calls pages:
 *     ```
       <?php query_posts('post_type=page&orderby=title&order=asc'); ?>
       <div class="scrollContainer">
       <?php while (have_posts()) : the_post(); ?>
       <div class="panel" id="<?php echo $post->post_name ; ?>">
       <?php the_content(); ?>
       </div>
       <?php endwhile;?>
       </div>
       ```
   
 * and it works great.
    In one page content, I run another php Loop to call the 
   posts list, like this:
 *     ```
       <?php query_posts ('post_type=post&order=desc'); ?>
       <?php while (have_posts()) : the_post(); ?>
       <li><a rel="group_news" href="<?php the_permalink() ; ?>"><?php the_title(); ?></a><?php echo '&nbsp;&nbsp;&nbsp;' ?><?php comments_number('No Comments','1 Comment','% Comments'); ?></li><?php endwhile;?>
       <?php wp_reset_query(); ?>
       ```
   
 * And the list is regularly called in that page, in that slider panel to be more
   precise.
 * Unfortunately, posts are also called in next panels of sider, as pages must be,
   replacing them.
    In short: panel 1: page content (ok) panel 2: page content (
   ok) panel 3: page content – posts list of second loop (ok) panel 4: post content(
   wrong) panel 5: post content (wrong) …
 * in panel 4 and 5, I expect to have page 4 and 5 content, not the posts !
 * I can’t solve this
    thanks a lot

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

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/two-loops-integrated-issue/#post-1970169)
 * try to use `wp_reset_query();` at the end of the slider query as well.
 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/two-loops-integrated-issue/#post-1970171)
 * _[duplicate: [http://wordpress.org/support/topic/two-loops-integrated-issue-1?replies=5](http://wordpress.org/support/topic/two-loops-integrated-issue-1?replies=5)
   
   please continue with your other thread; this one is closed.]

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

The topic ‘Two Loops integrated – issue’ is closed to new replies.

## Tags

 * [loops](https://wordpress.org/support/topic-tag/loops/)
 * [query_posts](https://wordpress.org/support/topic-tag/query_posts/)

 * 2 replies
 * 2 participants
 * Last reply from: [Michael](https://wordpress.org/support/users/alchymyth/)
 * Last activity: [15 years, 2 months ago](https://wordpress.org/support/topic/two-loops-integrated-issue/#post-1970171)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
