found_posts filter-hook . WP 2.1.0
Filters the number of found posts for the query.
Usage
add_filter( 'found_posts', 'filter_function_name_2953', 10, 2 ); function filter_function_name_2953( $found_posts, $this ){ // filter... return $found_posts; }
- $found_posts(int)
- The number of posts found.
- $this(WP_Query)
- The WP_Query instance (passed by reference).
Changelog
Since 2.1.0 | Introduced. |
Where the hook is called
found_posts
wp-includes/class-wp-query.php 3266
$this->found_posts = (int) apply_filters_ref_array( 'found_posts', array( $this->found_posts, &$this ) );