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



wp_apply_generated_classname_support › WordPress Function

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

Adds the generated classnames to the output.



源码

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