You should not be using query_posts()
for this or anything else.
For secondary loops you should be making new WP_Query
instances. Since you can (and should) assign instances to different variables they won’t interfere with each other.
So your structure would be roughly like this:
$outer_query = new WP_Query();
while( $outer_query->have_posts() ) : the_post;
$inner_query = new WP_Query();
endwhile;
Related Posts:
- Rearranging posts based on categories
- Category archive page – loop through posts of certain tag (with pagination) – pre_get_posts
- If newest post of category is newest post in general, skip first post of category
- Conditional category query breaking?
- Category name for all posts getting assigned to a single random post
- how tho change number of posts in loop from specific categories
- Category slug in in loop always the same?
- Detecting top parent category fails on home page
- Should category.php and The Loop be used if the query needs to be customizable?
- Exclude the category from the WordPress loop
- get_field not displaying my custom field value
- WP_Query not looking at child category
- Randomise results from a category page?
- How to show a category post to a specific registered user
- Display list of Sub-Categories and the posts they contain, within one main Category
- Remove child products from woocommerce category page [closed]
- Get a list of commas separated categories inside a loop
- Custom Query to search through categories
- is_category in pre_get_posts results in php notices
- Display one latest post from multiple categories
- How do I get the total number of categories in a list of search results?
- Check if post belongs to any category
- How do I display the posts from a custom post type on a category.php page?
- How to group the loop posts in a particular by author?
- Display products for a category, sorted by post_excerpt
- How Do I Merge Categories With phpMyAdmin
- Exclude category from loop not working
- a-z list, categories and sub categories in loop
- Is it possible to select and edit the way the most recent post from a certain category is displayed on the page?
- How to display posts under a specific subcategory of a given category
- get_the_category and echo out link to child-most/deepest category
- Displaying multiple loops based off of category
- How to loop only categories without posts (+ show category featured image with acf) [closed]
- Additional featured post on first page
- Show all posts for a specific category/author
- Redirect category to url with /category
- create a page which displays a list of categories title+ short description?
- Enter a variable in the ‘category_name’ parameter
- Query Posts Exclude Entire Category
- query in category.php repeats itself
- Display posts separated by Category in Author’s page
- Remove product category placeholder image (Woocomerce)
- WooCommerce – How to show specific category first-rest of products-specific category last
- Show popular post by category code
- Inside a loop, how to change CSS class based on category name?
- Exclude current post from loop
- How to insert category list into post creation page, and retrieve chosen categories?
- Categories list loop – add separator every 3 categories [closed]
- Trying to get variables in hacked category dropdown
- category__not_in and id values from variable
- Overriding default calendar to show posts from a category
- Do not show sub categories in the loop on archive-product.php
- Allow user to select categories that will display in post loop
- Insert HTML content in WP Query at specific point
- Simple way to style posts of a single category differently in the loop and in single
- Two Sections on Woocommerce Catergory Page [closed]
- Getting the Most Recent Posts from Multiple Categories
- Display subcategories in dropdown
- Display category title and three latest post inside the category
- Have posts that belong to multiple categories, exclude some categories from homepage
- How Do I Delete WordPress Posts Older Than 400 Days, From A WordPress Category
- Show multiple categories in query using redux framework variable
- Get the ID of the current post’s child category
- Get categories of queried posts
- Limit Loop to One Category
- How to display posts from specific category using get_option function?
- Display post thumbnail for specific category outside the loop
- Filter Category Loop Dynamically
- SQL query to get posts from multiple categories but not in a category
- the_category() doesn’t working in wp_query loop
- Category sticky latest
- Exclude posts without category from loop
- Show the number of the post
- How can I order all subcategories alphabetical independent of the parent categories?
- Custom Loop with certain number of one category
- Template category.php with page (no posts)
- How to create a category loop on my blog (ACF Plugin)
- Displaying Category in sidebar post widget but not in the loop on home
- Issue with WordPress category search
- Loop doesn’t work
- How to get posts from many categories using WP_Query
- Display Taxonomies in loop with template args
- How to loop through a custom field for each post, & display?
- show category name before first posts in each category
- show posts found in multiple categories via category_name query string?
- Match two taxonomies to display a specific content
- Loop through posts of CatA and store value of CatB in separate array
- How to add an empty entry to masonry?
- How to get multiple loop in category.php, my scripts becomes madness
- Custom Category Page Not Working [duplicate]
- how to get number of posts in a category on a specific date
- Show posted on date only for posts in a certain category
- 2 loops in archive.php (one for each category)
- Displaying posts by year
- Using pagination with multiple loops causes it to break
- Custom loop by url
- How to create a custom loop ordered by Categories on a Page Template?
- IF have_posts contains posts from a certain category
- Main loop querying current template’s info only in custom category archive pages, not my posts
- Order Categories by Character Count