WP_User::init()
Sets up object properties, including capabilities.
Метод класса: WP_User{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WP_User = new WP_User(); $WP_User->init( $data, $site_id );
- $data(объект) (обязательный)
- User DB row object.
- $site_id(int)
- The site ID to initialize for.
По умолчанию: ''
Список изменений
С версии 3.3.0 | Введена. |
Код WP_User::init() WP User::init WP 6.6.1
public function init( $data, $site_id = '' ) { if ( ! isset( $data->ID ) ) { $data->ID = 0; } $this->data = $data; $this->ID = (int) $data->ID; $this->for_site( $site_id ); }