the_posts filter-hook . WP 1.5.0
Filters the array of retrieved posts after they've been fetched and internally processed.
Usage
add_filter( 'the_posts', 'filter_function_name_3484', 10, 2 ); function filter_function_name_3484( $posts, $this ){ // filter... return $posts; }
- $posts(WP_Post[])
- Array of post objects.
- $this(WP_Query)
- The WP_Query instance (passed by reference).
Changelog
Since 1.5.0 | Introduced. |
Where the hook is called
the_posts
wp-includes/class-wp-query.php 3190
$this->posts = apply_filters_ref_array( 'the_posts', array( $this->posts, &$this ) );
Where in WP core the hook is used WordPress
wp-includes/class-wp-query.php 256
add_filter( 'the_posts', '_close_comments_for_old_posts', 10, 2 );