WP_Block_Type::get_attributes(): array

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


Return

array Array of attributes.


Top ↑

Source

File: wp-includes/class-wp-block-type.php. View all references

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

Top ↑

Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes

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