wp_skip_border_serialization( WP_Block_Type $block_type ): bool

This function has been deprecated since 6.0.0. Use wp_should_skip_block_supports_serialization() instead.

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only by core. It is listed here for completeness.

Checks whether serialization of the current block’s border properties should occur.

Description

See also

Parameters

$block_typeWP_Block_Typerequired
Block type.

Return

bool Whether serialization of the current block’s border properties should occur.

Source

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'];
}

Changelog

VersionDescription
6.0.0Deprecated. Use wp_should_skip_block_supports_serialization() introduced in 6.0.0.
5.8.0Introduced.

User Contributed Notes

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