WP_Block_Type::get_attributes()
Get all available block attributes including possible layout attribute from Columns block.
Description Description
Return Return
(array) Array of attributes.
Source Source
File: wp-includes/class-wp-block-type.php
public function get_attributes() {
return is_array( $this->attributes ) ?
array_merge(
$this->attributes,
array(
'layout' => array(
'type' => 'string',
),
)
) :
array(
'layout' => array(
'type' => 'string',
),
);
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |