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