WP_User::update_user_level_from_caps()publicWP 2.0.0

Updates the maximum user level for the user.

Updates the 'user_level' user metadata (includes prefix that is the database table prefix) with the maximum user level. Gets the value from the all of the capabilities that the user has.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$WP_User = new WP_User();
$WP_User->update_user_level_from_caps();

Заметки

  • Global. wpdb. $wpdb WordPress database abstraction object.

Список изменений

С версии 2.0.0 Введена.

Код WP_User::update_user_level_from_caps() WP 6.5.2

public function update_user_level_from_caps() {
	global $wpdb;
	$this->user_level = array_reduce( array_keys( $this->allcaps ), array( $this, 'level_reduction' ), 0 );
	update_user_meta( $this->ID, $wpdb->get_blog_prefix() . 'user_level', $this->user_level );
}