I think maybe you don’t need Wp_Query. I believe you can just do
$episodes_for_front_page = array();
//get the two dramas
$dramas = get_posts(array('post_type' => 'drama'));
foreach ($dramas as $drama){
//get all the episodes belonging to that drama, sorted by most recent update
$episodes = get_posts(
array(
'post_type' => 'episode',
'post_parent' => $drama->ID,
'orderby' => 'post_modified',
'order' => 'DESC'
)
);
//add the most recent episode to the list of posts to display
$episodes_for_front_page[] = $episodes[0];
}
Related Posts:
- meta_query ‘compare’ => ‘IN’ not working
- Use the page slug in a WP_Query?
- Sorting: custom query with orderby meta_value_num THEN by title
- WP_Query and next_posts_link
- Using OR conditions in meta_query for query_posts argument
- Get posts by menu ID
- count posts from custom taxonomy terms by year
- replace the WP_Query class in the main query
- Woocommerce query by price range and custom meta key
- Get posts with condition on comment meta value
- WP_Query sort by comment meta data
- Move posts to top of WP_Query if in certain Taxonomy?
- WP_query ‘orderby=none’ Problem
- How can I create a WP_Query that returns posts where one meta_value
- ‘paged’ in wp_query doesn’t work
- Sorting meta_value as integer doesn’t work
- Display different number of posts from one category on the different pages
- How to display child posts in the parent category
- Injecting content with $wp_query->current_post restarts from zero on paged pages. How to inject content after X posts, regardless of pagination?
- Find all product that contain terms with %keywords% in WP_Query
- Front End Sorting Questions
- Filtering WP_Query result by category
- posts order by title second word
- Merged two WP_Queries, posts per page and pagination not working
- Why WP_Query::is_date() returns false when ‘date_query’ argument is set?
- Meta_query with or without value
- How can I query posts from multiple roles?
- WP_Query Filtred by author name ( Return null )
- Query all posts in a given taxonomy
- How To Get Some Data From WordPress Database Using WordPress $wpdb Query?
- Using $paged redirects /page/2 to page 1
- Why wont this wp_query exclude certain pages?
- Create ONE callback for all page templates, post filter queries + paginated pages, triggering pagination via AJAX
- How do I change database charset when using `wpdb`
- get_posts – get all posts by array of author
- Query “Category A” + 1 post from “Category B” – how?
- Unexpected end of file
- WP_Query To call data from diffrent tables
- new WP_Query with author argument return no results
- How to combine two or more WP_Query?
- Assigning a meta_query value based on regexp to wp_query fails
- Clean up WordPress code that repeats
- WP_Query custom query showing only 10 posts on all pages
- Not getting metavalue
- Display Featured Post by Categories and Avoid duplicated posts
- How to show optimized list of posts with all their attachment images
- Posts not showing per category after WP_Query?
- wp_query exclude word and category
- How do I exclude the lowest level terms in a taxonomy?
- How can I query users by custom role?
- Pagination inside of a edit page
- Problem with is_tax in WP_Query loop
- Removing duplicate values between two wordpress queries
- Ordering posts by an array
- WP_Query and is_page_template() conditional
- Exclude recently updated post from custom WP_Query using multiple loops
- get_posts output always same post
- WordPress Custom Search Form Displaying Unexpected Results
- Stomping WP_Query in author archive to facilitate pagination with custom queries
- Limit number of posts in loop
- How do I get Woocommerce product variation name and variation description in a WP_Query?
- Slow Query On Search
- Loop posts based on permalink term
- Does putting queries within loops cause an issue on WordPress?
- How to get current page nearest parent id?
- How to create Page templates for showing Blog posts in different layouts?
- wp Query Posts to display in Nivo Slider
- How to get only ONE category of “Portfolio” posts to display on main page rather than ALL categories?
- Determining what post is displayed out of total posts found
- Strange behaviour of hierarchical taxonomy archive
- Is it normal that get_post() gets run 300 times and the content of those posts aren’t visible?
- WordPress Sub Category Archive, Show Extra Empty Page Number in Pagination
- SQL to join u3g_users & u3g_meta_value with repeating data
- Doing $wpdb->get_results returns NULL, doing the same query in my DB returns correct value
- SEARCH QUERY PLEASE HELP | call_user_func_array() expects parameter 1 to be a valid callback php
- How to get meta key list efficiently?
- Get posts having meta value between two numbers
- WP_Query how to add a thumbnail to the first post from the last 5 posts?
- How order by works?
- taxquery taxonomy get terms
- Separate by Category Post Type
- ACF: using two loops, the_field returns field content from another loop
- Using modified ‘meta_key’ to set ‘orderby’ in WP_Query?
- WP_Query don’t working with fixed post_id and term_taxonomy
- Combine WP_Query with array of custom data to single loop without breaking the pagination
- Query posts in current category but not attachment format
- WP_Query with Pagination and orderby meta_value_num showing duplicates
- Using orderby with 2 meta keys
- wp_query – Modify $query to include duplicate content
- Optimising specific Query with ACF meta objects
- Slow getting posts from category
- Query specific number of posts for each post type in specific order
- Avoiding page loop
- Query Users by post count, last 30 days and display each users post count according to post type
- how do I exclude child categories from a wp_query?
- How to create a loop inside WP_Query?
- how to show only catergory titles on a page in wordpress
- I want to place a post before all others from an ACF boleen field
- How to put posts with some taxonomy on top of others in `pre_get_posts`
- wp_query, calculate with two dates when ‘key’ is text format