WP_User_Query::__set()publicWP 4.0.0

Makes private properties settable for backward compatibility.

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

Хуков нет.

Возвращает

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

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

$WP_User_Query = new WP_User_Query();
$WP_User_Query->__set( $name, $value );
$name(строка) (обязательный)
Property to check if set.
$value(разное) (обязательный)
Property value.

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

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

Код WP_User_Query::__set() WP 6.5.2

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

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