wp_skip_border_serialization()WP 5.8.0

Deprecated from version 6.0.0. It is no longer supported and can 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 border 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.

Return

true|false. Whether serialization of the current block's border properties should occur.

Usage

wp_skip_border_serialization( $block_type );
$block_type(WP_Block_Type) (required)
Block type.

Notes

Changelog

Since 5.8.0 Introduced.
Deprecated since 6.0.0 Use wp_should_skip_block_supports_serialization() introduced in 6.0.0.

wp_skip_border_serialization() code WP 6.5.2

function wp_skip_border_serialization( $block_type ) {
	_deprecated_function( __FUNCTION__, '6.0.0', 'wp_should_skip_block_supports_serialization()' );

	$border_support = isset( $block_type->supports['__experimentalBorder'] )
		? $block_type->supports['__experimentalBorder']
		: false;

	return is_array( $border_support ) &&
		array_key_exists( '__experimentalSkipSerialization', $border_support ) &&
		$border_support['__experimentalSkipSerialization'];
}