WP_User_Query::__get()publicWP 4.0.0

Makes private properties readable for backward compatibility.

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

Хуков нет.

Возвращает

Разное. Property.

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

$WP_User_Query = new WP_User_Query();
$WP_User_Query->__get( $name );
$name(строка) (обязательный)
Property to get.

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

С версии 4.0.0 Введена.
С версии 6.4.0 Getting a dynamic property is deprecated.

Код WP_User_Query::__get() WP 6.4.3

public function __get( $name ) {
	if ( in_array( $name, $this->compat_fields, true ) ) {
		return $this->$name;
	}

	wp_trigger_error(
		__METHOD__,
		"The property `{$name}` is not declared. Getting a dynamic property is " .
		'deprecated since version 6.4.0! Instead, declare the property on the class.',
		E_USER_DEPRECATED
	);
	return null;
}