Function Signature:
_prime_site_caches
Function Description:
Adds any sites from the given IDs to the cache that do not already exist in cache.
Function Examples:
⚠️ Examples below are generated with GPT-3 once every hour. Do not take them too seriously.
Consider them as some extra input in your learning process - reason about them. Will it work? What could fail?
// Example 1: Prime the site caches for all posts on the site
_prime_site_caches( array( 'posts' ) );
// Example 2: Prime the site caches for all categories and tags on the site
_prime_site_caches( array( 'categories', 'tags' ) );
// Example 3: Prime the site caches for specific post IDs on the site
$post_ids = array( 1, 5, 10 );
_prime_site_caches( array( 'posts' ), $post_ids );