wp_cache_set_users_last_changed()WP 6.3.0

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

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wp_cache_set_users_last_changed();

Список изменений

С версии 6.3.0 Введена.

Код wp_cache_set_users_last_changed() WP 6.7.1

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