wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_apply_generated_classname_support › WordPress Function

Seit5.6.0
Veraltetn/v
wp_apply_generated_classname_support ( $block_type )
Zugriff:
  • private
Parameter:
  • (WP_Block_Type) $block_type Block Type.
    Erforderlich: Ja
Gibt zurück:
  • (array) Block CSS classes and inline styles.
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;
}