WP_Block::__get()publicWP 5.5.0

Returns a value from an inaccessible property.

This is used to lazily initialize the attributes property of a block, such that it is only prepared with default attributes at the time that the property is accessed. For all other inaccessible properties, a null value is returned.

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

Хуков нет.

Возвращает

Массив|null. Prepared attributes, or null.

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

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

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

С версии 5.5.0 Введена.

Код WP_Block::__get() WP 6.5.2

public function __get( $name ) {
	if ( 'attributes' === $name ) {
		$this->attributes = isset( $this->parsed_block['attrs'] ) ?
			$this->parsed_block['attrs'] :
			array();

		if ( ! is_null( $this->block_type ) ) {
			$this->attributes = $this->block_type->prepare_attributes_for_render( $this->attributes );
		}

		return $this->attributes;
	}

	return null;
}