found_posts_query filter-hook . WP 2.1.0
Filters the query to run for retrieving the found posts.
Usage
add_filter( 'found_posts_query', 'filter_function_name_5080', 10, 2 ); function filter_function_name_5080( $found_posts_query, $this ){ // filter... return $found_posts_query; }
- $found_posts_query(string)
- The query to run to find the found posts.
- $this(WP_Query)
- The WP_Query instance (passed by reference).
Changelog
Since 2.1.0 | Introduced. |
Where the hook is called
found_posts_query
wp-includes/class-wp-query.php 3243
$found_posts_query = apply_filters_ref_array( 'found_posts_query', array( 'SELECT FOUND_ROWS()', &$this ) );