Switch language

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




delete_user_meta [ WordPress Function ]

delete_user_meta ( $user_id, $meta_key, $meta_value = '' )
Parameters:
  • (int) $user_id user ID
  • (string) $meta_key Metadata name.
  • (mixed) $meta_value Optional. Metadata value.
Uses:
Links:
Returns:
  • (bool) False for failure. True for success.
Defined at:



Remove metadata matching criteria from a user.

You can match based on the key, or key and value. Removing based on key and value, will keep from removing duplicate metadata with the same key. It also allows removing all metadata matching key, if needed.

Source


<?php
function delete_user_meta($user_id$meta_key$meta_value '') {
    return 
delete_metadata('user'$user_id$meta_key$meta_value);
}
?>

Examples [ wp-snippets.com ]

Top Google Search Results

More ...

User discussions [ wordpress.org ]

0 User Note(s)

None yet. Be the first!

Add New ...



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