update_post_cache

Definition:
function update_post_cache(&$posts) {}

Updates posts in cache.

Parameters

  • array $posts: Array of post objects
  • &$posts

Source code

function update_post_cache(&$posts) {

	if ( !$posts )

		return;



	foreach ( $posts as $post )

		wp_cache_add($post->ID, $post, 'posts');

}

3195

No comments yet... Be the first to leave a reply!

Leave a comment