WP_Block::__get
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.
Method of the class: WP_Block{}
No Hooks.
Returns
Array|null. Prepared attributes, or null.
Usage
$WP_Block = new WP_Block(); $WP_Block->__get( $name );
- $name(string) (required)
- Property name.
Changelog
| Since 5.5.0 | Introduced. |
WP_Block::__get() WP Block:: get code WP 7.0
public function __get( $name ) {
if ( 'attributes' === $name ) {
$this->attributes = $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;
}