WP_Block_Supports::register_attributes()privateWP 5.6.0

Registers the block attributes required by the different block supports.

Method of the class: WP_Block_Supports{}

No Hooks.

Return

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->register_attributes();

Changelog

Since 5.6.0 Introduced.

WP_Block_Supports::register_attributes() code WP 6.5.2

private function register_attributes() {
	$block_registry         = WP_Block_Type_Registry::get_instance();
	$registered_block_types = $block_registry->get_all_registered();
	foreach ( $registered_block_types as $block_type ) {
		if ( ! ( $block_type instanceof WP_Block_Type ) ) {
			continue;
		}
		if ( ! $block_type->attributes ) {
			$block_type->attributes = array();
		}

		foreach ( $this->block_supports as $block_support_config ) {
			if ( ! isset( $block_support_config['register_attribute'] ) ) {
				continue;
			}

			call_user_func(
				$block_support_config['register_attribute'],
				$block_type
			);
		}
	}
}