block_core_home_link_build_li_wrapper_attributes

函数


block_core_home_link_build_li_wrapper_attributes ( $context )
参数
  • (array)
    $context
    Home link block context.
    Required:
返回值
  • (string) The li wrapper attributes.
定义位置
  • wp-includes/blocks/home-link.php
    , line 94
引入
弃用

Builds an array with classes and style for the li wrapper

function block_core_home_link_build_li_wrapper_attributes( $context ) {
	$colors          = block_core_home_link_build_css_colors( $context );
	$font_sizes      = block_core_home_link_build_css_font_sizes( $context );
	$classes         = array_merge(
		$colors['css_classes'],
		$font_sizes['css_classes']
	);
	$style_attribute = ( $colors['inline_styles'] . $font_sizes['inline_styles'] );
	$css_classes     = trim( implode( ' ', $classes ) ) . ' wp-block-navigation-item';

	$wrapper_attributes = get_block_wrapper_attributes(
		array(
			'class' => $css_classes,
			'style' => $style_attribute,
		)
	);

	return $wrapper_attributes;
}