You can use the the_posts
filter to loop through the results before they get returned.
Proof of concept:
function test_the_posts($a) {
var_dump($a); die;
}
add_action('the_posts','test_the_posts');
I am fairly certain (though I haven’t tested it) that you could pretty easily break pagination and probably other things by fiddling with that, so be careful.
Related Posts:
- How to fix pagination for custom loops?
- Remove the Homepage Query
- pre_get_posts with get_posts
- Is `query_posts` really slower than secondary query?
- Are there any scenarios where the query_posts may be used?
- WordPress Number of Posts Not Changing With posts_per_page
- Insert/sticky specific post into Loop at specific location
- Transient not working for custom loops
- post loop causes wp_users and wp_usermeta DB queries for each users
- get_the_foo() in the loop – does it perform another query?
- If No Search Results, Show Posts from Alternate Search Query
- Splitting the main query in multiple loops with query_posts and/or pre_get_posts?
- How to Loop within a Loop (Display Children and then Grandchildren)
- Category archive page – loop through posts of certain tag (with pagination) – pre_get_posts
- Two loops by pre_get_post on same page
- Loop posts only excluding first post
- Loop after page content
- A loop with all articles with certain text strings in tags
- Display most viewed post from last 30 days is not working correctly
- Query posts if meta key starts with
- 3 Posts in Loop, Show Stickies First
- How to go about combining dropdowns / filter queries?
- Query reset problem or flawed code to enable custom post type query
- Query last updated posts (posts updated in the last 24 hours)
- Conditional query that displays on Woo product attribute pages
- How do I use AJAX Query in my posts loop?
- woocommerce get_price_html not pulling in correct price
- Make blog page show 10 on first page, 9 on every other page
- Exclude posts from main loop based on meta value
- Alter query using pre_get_posts() if meta_key is present
- How to fix pagination for custom loops?
- pre_get_posts for two loops on same page
- Sanitize Custom Field Value in Meta Query
- How can I paginate this?
- How to display posts by vote count and if no value continue with latest posts with no votes?
- How to fix pagination for custom loops?
- Modify the main loop to display current month / year
- Split wordpress loop to multiple layouts
- Making a query to the DB using same parameters of loop
- Loop inside query
- Change post order by meta key, per post basis
- get_delete_post_link() inside Loop stubbornly returns nothing
- loop inside the foreach
- Query posts only with actual text content (not including shortcode or images)
- Exclude posts based on an array
- Query post & loop problem.
- Loops for cat links not looping for wordpress site
- How do I set the Stewart Search Template to return only published posts in the result
- Trying to get all links in my posts
- Custom Query with Sticky Posts
- Build a Page which shows the Oldest Post with specific Custom Field Value
- Exclude Posts Using Meta Query and User Meta
- Query posts and display all dates in repeater field in chronological order
- How to fix pagination for custom loops?
- Get featured image outside the loop using foreach
- Alternative layout the loop
- Show posts by tags excluding current post
- Strange problem with wp_get_attachment_image_src database (db) query count
- pre_get_posts main_query not displaying after applying tax_query filters
- Next 10 posts data of currently viewing post in blog page
- How to fix pagination for custom loops?
- Query counting excluded category on paged loop
- How to fix pagination for custom loops?
- How to fix pagination for custom loops?
- Combine Query and Select Database to create directory loop
- WordPress loop: Display if posts exist
- wordpress showing all posts instead of date range
- Multiple loop with pagination in same page
- How to use orderby on meta_value when using Pods custom database table storage
- Query Loop Block: possible to restrict just child pages?
- Use Base-URL with Query-Loop
- Using Query Loop Block to list all posts under each category
- Getting the correct post ID in WordPress query loop
- Dinamis Query Loop template Custom Post Type dan Taxonomy di WordPress Blocks dengan PHP
- Jquery Slider for profile template
- Counting the posts of a custom WordPress loop (WP_Query)?
- Pagination not working with custom loop
- if ( is_home() && ! is_front_page() )
- Get excerpt using get_the_excerpt outside a loop
- How to display Yoast SEO meta description in archive template for each post instead of the_excerpt()? [closed]
- Get post content from outside the loop
- Why should I put if(have_posts()), is while(have_posts()) not enough?
- Display featured products through custom loop in woocommerce on template page
- Split Content and Gallery
- Should we trust the post globals?
- Query multiple custom post types in single loop
- How to get Author ID outside the loop
- How can i display the content in plaintext
- Redirect loop when trying to login to /wp-admin/ [duplicate]
- How to split a loop into multiple columns
- Is it necessary to reset the query after using get_posts()?
- Is there any difference between the_title() and echo get_the_title()?
- AJAX with loop filtering categories
- WP_Query vs get_posts
- Do I need to use The Loop on pages?
- remove tags from the_content
- the_title() shows title of the first post instead of the page title?
- How to force excerpts / teasers in the loop
- Display category posts grouped by taxonomy
- Usage of the new “posts_clauses” filter in WordPress 3.1?