wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_apply_custom_classname_support › WordPress Function

Da5.6.0
Deprecaton/a
wp_apply_custom_classname_support ( $block_type, $block_attributes )
Accedi:
  • private
Parametri: (2)
  • (WP_Block_Type) $block_type Block Type.
    Richiesto:
  • (array) $block_attributes Block attributes.
    Richiesto:
Ritorna:
  • (array) Block CSS classes and inline styles.
Definito a:
Codex:

Adds the custom classnames to the output.



Sorgenti

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