wp_apply_alignment_support

函式
wp_apply_alignment_support ( $block_type, $block_attributes )
Access
Private
引數
  • (WP_Block_Type) $block_type Block Type.
    Required:
  • (array) $block_attributes Block attributes.
    Required:
返回值
  • (array) Block alignment CSS classes and inline styles.
定義位置
相關方法
wp_apply_spacing_supportwp_apply_dimensions_supportwp_register_alignment_supportwp_apply_border_supportwp_apply_colors_support
引入
5.6.0
棄用
-

wp_apply_alignment_support: 這是一個用於對HTML元素應用對齊支援的函式。它接收一個HTML字串和一個對齊引數作為輸入,並返回修改後的HTML字串,並應用對齊方式。

在傳入的屬性陣列中新增用於塊對齊的CSS類。

這將被應用到前端的塊標記中。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function wp_apply_alignment_support( $block_type, $block_attributes ) {
$attributes = array();
$has_align_support = block_has_support( $block_type, array( 'align' ), false );
if ( $has_align_support ) {
$has_block_alignment = array_key_exists( 'align', $block_attributes );
if ( $has_block_alignment ) {
$attributes['class'] = sprintf( 'align%s', $block_attributes['align'] );
}
}
return $attributes;
}
function wp_apply_alignment_support( $block_type, $block_attributes ) { $attributes = array(); $has_align_support = block_has_support( $block_type, array( 'align' ), false ); if ( $has_align_support ) { $has_block_alignment = array_key_exists( 'align', $block_attributes ); if ( $has_block_alignment ) { $attributes['class'] = sprintf( 'align%s', $block_attributes['align'] ); } } return $attributes; }
function wp_apply_alignment_support( $block_type, $block_attributes ) {
	$attributes        = array();
	$has_align_support = block_has_support( $block_type, array( 'align' ), false );
	if ( $has_align_support ) {
		$has_block_alignment = array_key_exists( 'align', $block_attributes );

		if ( $has_block_alignment ) {
			$attributes['class'] = sprintf( 'align%s', $block_attributes['align'] );
		}
	}

	return $attributes;
}

常見問題

FAQs
檢視更多 >