wp_cache_set_users_last_changed

The timeline below displays how wordpress function wp_cache_set_users_last_changed has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.3

/**
 * Sets the last changed time for the 'users' cache group.
 *
 * @since 6.3.0
 */
function wp_cache_set_users_last_changed()
{
    wp_cache_set_last_changed('users');
}