wp_register_dimensions_support

函数


wp_register_dimensions_support ( $block_type )
Access
Private
参数
  • (WP_Block_Type)
    $block_type
    Block Type.
    Required:
定义位置
  • wp-includes/block-supports/dimensions.php
    , line 21
引入
5.9.0
弃用

Registers the style block attribute for block types that support it.

function wp_register_dimensions_support( $block_type ) {
	// Setup attributes and styles within that if needed.
	if ( ! $block_type->attributes ) {
		$block_type->attributes = array();
	}

	// Check for existing style attribute definition e.g. from block.json.
	if ( array_key_exists( 'style', $block_type->attributes ) ) {
		return;
	}

	$has_dimensions_support = block_has_support( $block_type, array( '__experimentalDimensions' ), false );
	// Future block supports such as height & width will be added here.

	if ( $has_dimensions_support ) {
		$block_type->attributes['style'] = array(
			'type' => 'object',
		);
	}
}