- Timestamp:
- 06/23/2022 11:07:11 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/block-supports/layout.php
r53421 r53568 171 171 } 172 172 173 $class_name = wp_unique_id( 'wp-container-' ); 174 $gap_value = _wp_array_get( $block, array( 'attrs', 'style', 'spacing', 'blockGap' ) ); 173 $class_names = array(); 174 $container_class = wp_unique_id( 'wp-container-' ); 175 $class_names[] = $container_class; 176 177 // The following section was added to reintroduce a small set of layout classnames that were 178 // removed in the 5.9 release (https://github.com/WordPress/gutenberg/issues/38719). It is 179 // not intended to provide an extended set of classes to match all block layout attributes 180 // here. 181 if ( ! empty( $block['attrs']['layout']['orientation'] ) ) { 182 $class_names[] = 'is-' . sanitize_title( $block['attrs']['layout']['orientation'] ); 183 } 184 185 if ( ! empty( $block['attrs']['layout']['justifyContent'] ) ) { 186 $class_names[] = 'is-content-justification-' . sanitize_title( $block['attrs']['layout']['justifyContent'] ); 187 } 188 189 if ( ! empty( $block['attrs']['layout']['flexWrap'] ) && 'nowrap' === $block['attrs']['layout']['flexWrap'] ) { 190 $class_names[] = 'is-nowrap'; 191 } 192 193 $gap_value = _wp_array_get( $block, array( 'attrs', 'style', 'spacing', 'blockGap' ) ); 175 194 // Skip if gap value contains unsupported characters. 176 195 // Regex for CSS value borrowed from `safecss_filter_attr`, and used here … … 189 208 // don't apply the user-defined value to the styles. 190 209 $should_skip_gap_serialization = wp_should_skip_block_supports_serialization( $block_type, 'spacing', 'blockGap' ); 191 $style = wp_get_layout_style( ".$c lass_name", $used_layout, $has_block_gap_support, $gap_value, $should_skip_gap_serialization, $fallback_gap_value );210 $style = wp_get_layout_style( ".$container_class", $used_layout, $has_block_gap_support, $gap_value, $should_skip_gap_serialization, $fallback_gap_value ); 192 211 // This assumes the hook only applies to blocks with a single wrapper. 193 212 // I think this is a reasonable limitation for that particular hook. 194 213 $content = preg_replace( 195 214 '/' . preg_quote( 'class="', '/' ) . '/', 196 'class="' . esc_attr( $class_name) . ' ',215 'class="' . esc_attr( implode( ' ', $class_names ) ) . ' ', 197 216 $block_content, 198 217 1
Note: See TracChangeset
for help on using the changeset viewer.