wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_apply_custom_classname_support › WordPress Function

Since5.6.0
已弃用n/a
wp_apply_custom_classname_support ( $block_type, $block_attributes )
访问:
  • private
参数: (2)
  • (WP_Block_Type) $block_type Block Type.
    Required: Yes
  • (array) $block_attributes Block attributes.
    Required: Yes
返回:
  • (array) Block CSS classes and inline styles.
定义在:
文档:

Adds the custom classnames to the output.



源码

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