wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
update_user_option [ WordPress Function ]
| Parameter: |
|
| Nutzt: |
|
| Gibt zurück: |
|
| Definiert in: |
|
Update user option with global blog capability.
User options are just like user metadata except that they have support for global blog options. If the 'global' parameter is false, which it is by default it will prepend the WordPress table prefix to the option name.
Deletes the user option if $newvalue is empty.
Source
<?php
function update_user_option( $user_id, $option_name, $newvalue, $global = false ) {
global $wpdb;
if ( !$global )
$option_name = $wpdb->prefix . $option_name;
// For backward compatibility. See differences between update_user_meta() and deprecated update_usermeta().
// http://core.trac.wordpress.org/ticket/13088
if ( is_null( $newvalue ) || is_scalar( $newvalue ) && empty( $newvalue ) )
return delete_user_meta( $user_id, $option_name );
return update_user_meta( $user_id, $option_name, $newvalue );
}
?>
Beispiele [ wp-snippets.com ]
Top Google Suchergebnisse
- Function Reference/update user option « WordPress Codex
Description. Update user option with global blog capability. User options are just like user metadata except that they have support for global blog options.
codex.wordpress.org - WordPress › Support » update_user_option() Not quite working right.
update_user_option() does not seem to want to update wp_user table as i thought it would, instead it inserts the option in to wp_usermeta which is fine, but the ...
wordpress.org - PHPXRef 0.7 : WordPress : Function Reference: update_user_option()
Function and Method Cross Reference. update_user_option(). Defined at: /wp- includes/user.php -> line 275. Referenced 20 times: ...
phpxref.ftwr.co.uk - functions - update_user_option not working as expected ...
Jan 17, 2012 ... So I was looking into the update_user_option() as I need to update an additional field upon registration. So I found this in wp-login.php: ...
wordpress.stackexchange.com