wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_apply_alignment_support is private and should not be used in themes or plugins directly.
wp_apply_alignment_support › WordPress Function
Since5.6.0
Deprecatedn/a
› wp_apply_alignment_support ( $block_type, $block_attributes )
Access: |
|
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: |
Adds CSS classes for block alignment to the incoming attributes array.
This will be applied to the block markup in the front-end.Source
function wp_apply_alignment_support( $block_type, $block_attributes ) { $attributes = array(); $has_align_support = block_has_support( $block_type, '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; }