WP_List_Table::__set()publicWP 4.0.0

Makes private properties settable for backward compatibility.

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

Хуков нет.

Возвращает

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

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

$WP_List_Table = new WP_List_Table();
$WP_List_Table->__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_List_Table::__set() WP 6.4.3

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
	);
}