wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_apply_generated_classname_support is private and should not be used in themes or plugins directly.
wp_apply_generated_classname_support › WordPress Function
Since5.6.0
Deprecatedn/a
› wp_apply_generated_classname_support ( $block_type )
Access: |
|
Parameters: |
|
Returns: |
|
Defined at: | |
Codex: |
Adds the generated classnames to the output.
Source
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; }