wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



update_user_option › WordPress Function

Depuis2.0.0
Dépréciéen/a
update_user_option ( $user_id, $option_name, $newvalue, $is_global = false )
Paramètres: (4)
  • (int) $user_id User ID.
    Requis: Oui
  • (string) $option_name User option name.
    Requis: Oui
  • (mixed) $newvalue User option value.
    Requis: Oui
  • (bool) $is_global Optional. Whether option name is global or blog specific. Default false (blog specific).
    Requis: Non
    Défaut: false
Retourne:
  • (int|bool) User meta ID if the option didn't exist, true on successful update, false on failure.
Défini(e) dans:
Codex:

Updates user option with global blog capability.

User options are just like user metadata except that they have support for global blog options. If the 'is_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

function update_user_option( $user_id, $option_name, $newvalue, $is_global = false ) {
	global $wpdb;

	if ( ! $is_global ) {
		$option_name = $wpdb->get_blog_prefix() . $option_name;
	}

	return update_user_meta( $user_id, $option_name, $newvalue );
}