wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi
update_user_caches › WordPress Function
Da3.0.0
Deprecaton/a
› update_user_caches ( $user )
Parametri: |
|
Ritorna: |
|
Definito a: |
|
Codex: |
Updates all user caches.
Funzioni correlate: update_term_cache, update_site_cache, update_post_caches, update_post_cache, update_page_cache
Sorgenti
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' ); } }