wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_skip_border_serialization › WordPress Function

Seit5.8.0
Veraltet6.0.0
wp_skip_border_serialization ( $block_type )
Zugriff:
  • private
Parameter:
  • (WP_Block_Type) $block_type Block type.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (bool) Whether serialization of the current block's border properties should occur.
Definiert in:
Codex:

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



Quellcode

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