wpseek.com
A WordPress-centric search engine for devs and theme authors
update_user_caches › WordPress Function
Since3.0.0
Deprecatedn/a
› update_user_caches ( $user )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Updates all user caches.
Related Functions: update_term_cache, update_site_cache, update_post_caches, update_page_cache, update_post_cache
Source
function update_user_caches( $user ) {
if ( $user instanceof WP_User ) {
if ( ! $user->exists() ) {
return false;
}
$user = $user->data;
}
wp_cache_add( $user->ID, $user, 'users' );
wp_cache_add( $user->user_login, $user->ID, 'userlogins' );
wp_cache_add( $user->user_nicename, $user->ID, 'userslugs' );
if ( ! empty( $user->user_email ) ) {
wp_cache_add( $user->user_email, $user->ID, 'useremail' );
}
}