WordPress Version: 6.3
/**
* Sets the last changed time for the 'posts' cache group.
*
* @since 5.0.0
*/
function wp_cache_set_posts_last_changed()
{
wp_cache_set_last_changed('posts');
}
The timeline below displays how wordpress function wp_cache_set_posts_last_changed has changed across different WordPress versions. If a version is not listed, refer to the next available version below.
/**
* Sets the last changed time for the 'posts' cache group.
*
* @since 5.0.0
*/
function wp_cache_set_posts_last_changed()
{
wp_cache_set_last_changed('posts');
}
/**
* Sets the last changed time for the 'posts' cache group.
*
* @since 5.0.0
*/
function wp_cache_set_posts_last_changed()
{
wp_cache_set('last_changed', microtime(), 'posts');
}