wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



delete_user_option › WordPress Function

Da3.0.0
Deprecaton/a
delete_user_option ( $user_id, $option_name, $is_global = false )
Parametri: (3)
  • (int) $user_id User ID
    Richiesto:
  • (string) $option_name User option name.
    Richiesto:
  • (bool) $is_global Optional. Whether option name is global or blog specific. Default false (blog specific).
    Richiesto: No
    Default: false
Ritorna:
  • (bool) True on success, false on failure.
Definito a:
Codex:

Deletes 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.


Sorgenti

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

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

	return delete_user_meta( $user_id, $option_name );
}