Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




delete_user_option [ WordPress Function ]

delete_user_option ( $user_id, $option_name, $global = false )
Parameters:
  • (int) $user_id User ID
  • (string) $option_name User option name.
  • (bool) $global Optional. Whether option name is global or blog specific. Default false (blog specific).
Uses:
  • $wpdb
Returns:
  • (unknown)
Defined at:



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

Source


<?php
function delete_user_option$user_id$option_name$global false ) {
    global 
$wpdb;

    if ( !
$global )
        
$option_name $wpdb->prefix $option_name;
    return 
delete_user_meta$user_id$option_name );
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics