wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_has_border_feature_support is private and should not be used in themes or plugins directly.
wp_has_border_feature_support › WordPress Function
Since5.8.0
Deprecatedn/a
› wp_has_border_feature_support ( $block_type, $feature, $default_value = false )
Access: |
|
Parameters: (3) |
|
Returns: |
|
Defined at: |
|
Codex: |
Checks whether the current block type supports the border feature requested.
If the__experimentalBorder
support flag is a boolean true
all border
support features are available. Otherwise, the specific feature's support
flag nested under experimentalBorder
must be enabled for the feature
to be opted into.Source
function wp_has_border_feature_support( $block_type, $feature, $default_value = false ) { // Check if all border support features have been opted into via `"__experimentalBorder": true`. if ( property_exists( $block_type, 'supports' ) && ( true === _wp_array_get( $block_type->supports, array( '__experimentalBorder' ), $default_value ) ) ) { return true; } // Check if the specific feature has been opted into individually // via nested flag under `__experimentalBorder`. return block_has_support( $block_type, array( '__experimentalBorder', $feature ), $default_value ); }