WP_Block_Type::get_attributes(): array

In this article

Get all available block attributes including possible layout attribute from Columns block.

Return

array Array of attributes.

Source

public function get_attributes() {
	return is_array( $this->attributes ) ?
		$this->attributes :
		array();
}

Changelog

VersionDescription
5.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.