wp_cache_set_users_last_changed() – Sets the last changed time for the ‘users’ cache group.

You appear to be a bot. Output may be restricted

Description

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

Usage

wp_cache_set_users_last_changed();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/user.php


Lines:

1 to 4 of 4
function wp_cache_set_users_last_changed() {
  wp_cache_set_last_changed( 'users' );
}
 

 View on GitHub View on Trac