WP_List_Table::__get()publicWP 4.0.0

Makes private properties readable for backward compatibility.

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

Хуков нет.

Возвращает

Разное. Property.

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

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

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

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

Код WP_List_Table::__get() WP 6.5.2

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