update_post_cache( WP_Post[] $posts )
Updates posts in cache.
Parameters
- $posts
-
(WP_Post[]) (Required) Array of post objects (passed by reference).
Source
File: wp-includes/post.php
function update_post_cache( &$posts ) { if ( ! $posts ) { return; } $data = array(); foreach ( $posts as $post ) { if ( empty( $post->filter ) || 'raw' !== $post->filter ) { $post = sanitize_post( $post, 'raw' ); } $data[ $post->ID ] = $post; } wp_cache_add_multiple( $data, 'posts' ); }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
1.5.1 | Introduced. |