wp_cache_set_users_last_changed()WP 6.3.0

Sets the last changed time for the 'users' cache group.

No Hooks.

Returns

null. Nothing (null).

Usage

wp_cache_set_users_last_changed();

Changelog

Since 6.3.0 Introduced.

wp_cache_set_users_last_changed() code WP 6.8.1

function wp_cache_set_users_last_changed() {
	wp_cache_set_last_changed( 'users' );
}