wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_skip_border_serialization is private and should not be used in themes or plugins directly.
wp_skip_border_serialization › WordPress Function
Since5.8.0
Deprecated6.0.0
› wp_skip_border_serialization ( $block_type )
Access: |
|
Parameters: |
|
See: | |
Returns: |
|
Defined at: |
|
Codex: |
Checks 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'];
}