WP_Block_Type::get_attributes(): array
Get all available block attributes including possible layout attribute from Columns block.
Contents
Return
array Array of attributes.
Source
File: wp-includes/class-wp-block-type.php
.
View all references
public function get_attributes() {
return is_array( $this->attributes ) ?
$this->attributes :
array();
}
Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |