add_user_meta

Definition:
function add_user_meta($user_id, $meta_key, $meta_value, $unique = false) {}

Add meta data field to a user.
Post meta data is called "Custom Fields" on the Administration Screens.

Parameters

  • int $user_id: Post ID.
  • string $meta_key: Metadata name.
  • mixed $meta_value: Metadata value.
  • bool $unique: Optional, default is false. Whether the same key should not be added.

Return values

returns:False for failure. True for success.

Source code

function add_user_meta($user_id, $meta_key, $meta_value, $unique = false) {

	return add_metadata('user', $user_id, $meta_key, $meta_value, $unique);

}

381

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: