get_border_color_classes_for_block_core_search

函数


get_border_color_classes_for_block_core_search ( $attributes )
参数
  • (array)
    $attributes
    The block attributes.
    Required:
返回值
  • (string) The border color classnames to be applied to the block elements.
定义位置
  • wp-includes/blocks/search.php
    , line 490
引入
弃用

根据是否有命名或自定义的边框颜色,返回边框颜色的类名。

function get_border_color_classes_for_block_core_search( $attributes ) {
	$border_color_classes    = array();
	$has_custom_border_color = ! empty( $attributes['style']['border']['color'] );
	$has_named_border_color  = ! empty( $attributes['borderColor'] );

	if ( $has_custom_border_color || $has_named_border_color ) {
		$border_color_classes[] = 'has-border-color';
	}

	if ( $has_named_border_color ) {
		$border_color_classes[] = sprintf( 'has-%s-border-color', esc_attr( $attributes['borderColor'] ) );
	}

	return implode( ' ', $border_color_classes );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。