wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_apply_generated_classname_support › WordPress Function

Od5.6.0
Przestarzałyn/a
wp_apply_generated_classname_support ( $block_type )
Dostęp:
  • private
Parametry:
  • (WP_Block_Type) $block_type Block Type.
    Wymagane: Tak
Powrót:
  • (array) Block CSS classes and inline styles.
Zdefiniowane na:
Codex:

Adds the generated classnames to the output.



Źródło

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;
}