wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_apply_alignment_support is private and should not be used in themes or plugins directly.
wp_apply_alignment_support › WordPress Function
Seit5.6.0
Veraltetn/v
› wp_apply_alignment_support ( $block_type, $block_attributes )
| Zugriff: |
|
| Parameter: (2) |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Adds CSS classes for block alignment to the incoming attributes array.
This will be applied to the block markup in the front-end.Quellcode
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;
}