wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_apply_custom_classname_support › WordPress Function

Depuis5.6.0
Dépréciéen/a
wp_apply_custom_classname_support ( $block_type, $block_attributes )
Accès:
  • private
Paramètres: (2)
  • (WP_Block_Type) $block_type Block Type.
    Requis: Oui
  • (array) $block_attributes Block attributes.
    Requis: Oui
Retourne:
  • (array) Block CSS classes and inline styles.
Défini(e) dans:
Codex:

Adds the custom classnames to the output.



Source

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