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.


Top ↑

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',
				),
			);
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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