Yoast\WP\SEO\Helpers

User_Helper::update_meta()publicYoast 1.0

Updates user meta field for a user.

Use the $prev_value parameter to differentiate between meta fields with the same key and user ID.

If the meta field for the user does not exist, it will be added.

Метод класса: User_Helper{}

Хуков нет.

Возвращает

int|true|false. Meta ID if the key didn't exist, true on successful update, false on failure or if the value passed to the function is the same as the one that is already in the database.

Использование

$User_Helper = new User_Helper();
$User_Helper->update_meta( $user_id, $meta_key, $meta_value, $prev_value );
$user_id(int) (обязательный)
User ID.
$meta_key(строка) (обязательный)
Metadata key.
$meta_value(разное) (обязательный)
Metadata value. Must be serializable if non-scalar.
$prev_value(разное)
Previous value to check before updating. If specified, only update existing metadata entries with this value. Otherwise, update all entries.
По умолчанию: ''

Код User_Helper::update_meta() Yoast 22.3

public function update_meta( $user_id, $meta_key, $meta_value, $prev_value = '' ) {
	return \update_user_meta( $user_id, $meta_key, $meta_value, $prev_value );
}