wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



block_has_support › WordPress Function

Od5.8.0
Przestarzałyn/a
block_has_support ( $block_type, $feature, $default_value = false )
Parametry: (3)
  • (WP_Block_Type) $block_type Block type to check for support.
    Wymagane: Tak
  • (string|array) $feature Feature slug, or path to a specific feature to check support for.
    Wymagane: Tak
  • (mixed) $default_value Optional. Fallback value for feature support. Default false.
    Wymagane: Nie
    Domyślny: false
Powrót:
  • (bool) Whether the feature is supported.
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 6.4.0

Checks whether the current block type supports the feature requested.



Źródło

function block_has_support( $block_type, $feature, $default_value = false ) {
	$block_support = $default_value;
	if ( $block_type instanceof WP_Block_Type ) {
		if ( is_array( $feature ) && count( $feature ) === 1 ) {
			$feature = $feature[0];
		}

		if ( is_array( $feature ) ) {
			$block_support = _wp_array_get( $block_type->supports, $feature, $default_value );
		} elseif ( isset( $block_type->supports[ $feature ] ) ) {
			$block_support = $block_type->supports[ $feature ];
		}
	}

	return true === $block_support || is_array( $block_support );
}