wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_apply_custom_classname_support is private and should not be used in themes or plugins directly.
wp_apply_custom_classname_support › WordPress Function
Seit5.6.0
Veraltetn/v
› wp_apply_custom_classname_support ( $block_type, $block_attributes )
| Zugriff: |
|
| Parameter: (2) |
|
| Gibt zurück: |
|
| Definiert in: | |
| Codex: |
Adds the custom classnames to the output.
Quellcode
function wp_apply_custom_classname_support( $block_type, $block_attributes ) {
$has_custom_classname_support = block_has_support( $block_type, 'customClassName', true );
$attributes = array();
if ( $has_custom_classname_support ) {
$has_custom_classnames = array_key_exists( 'className', $block_attributes );
if ( $has_custom_classnames ) {
$attributes['class'] = $block_attributes['className'];
}
}
return $attributes;
}