wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_register_border_support is private and should not be used in themes or plugins directly.
wp_register_border_support › WordPress Function
Seit5.8.0
Veraltetn/v
› wp_register_border_support ( $block_type )
Zugriff: |
|
Parameter: |
|
Definiert in: |
|
Codex: | |
Changelog: |
|
Registers the style attribute used by the border feature if needed for block types that support borders.
Quellcode
function wp_register_border_support( $block_type ) { // Setup attributes and styles within that if needed. if ( ! $block_type->attributes ) { $block_type->attributes = array(); } if ( block_has_support( $block_type, '__experimentalBorder' ) && ! array_key_exists( 'style', $block_type->attributes ) ) { $block_type->attributes['style'] = array( 'type' => 'object', ); } if ( wp_has_border_feature_support( $block_type, 'color' ) && ! array_key_exists( 'borderColor', $block_type->attributes ) ) { $block_type->attributes['borderColor'] = array( 'type' => 'string', ); } }