wp_skip_dimensions_serialization()
Deprecated since 6.0.0. It is no longer supported and may be removed in future releases. Use
wp_should_skip_block_supports_serialization() introduced in 6.0.0 instead.Checks whether serialization of the current block's dimensions properties should occur.
Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.
No Hooks.
Returns
true|false. Whether to serialize spacing support styles & classes.
Usage
wp_skip_dimensions_serialization( $block_type );
- $block_type(WP_Block_type) (required)
- Block type.
Notes
Changelog
| Since 5.9.0 | Introduced. |
| Deprecated since 6.0.0 | Use wp_should_skip_block_supports_serialization() introduced in 6.0.0. |
wp_skip_dimensions_serialization() wp skip dimensions serialization code WP 6.8.3
function wp_skip_dimensions_serialization( $block_type ) {
_deprecated_function( __FUNCTION__, '6.0.0', 'wp_should_skip_block_supports_serialization()' );
$dimensions_support = isset( $block_type->supports['__experimentalDimensions'] )
? $block_type->supports['__experimentalDimensions']
: false;
return is_array( $dimensions_support ) &&
array_key_exists( '__experimentalSkipSerialization', $dimensions_support ) &&
$dimensions_support['__experimentalSkipSerialization'];
}