Changeset 57365 for trunk/src/wp-includes/block-supports/background.php
- Timestamp:
- 01/26/2024 05:51:37 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/block-supports/background.php
r57254 r57365 71 71 } 72 72 73 $background_size 73 $background_size = isset( $block_attributes['style']['background']['backgroundSize'] ) 74 74 ? $block_attributes['style']['background']['backgroundSize'] 75 75 : 'cover'; 76 $background_position 76 $background_position = isset( $block_attributes['style']['background']['backgroundPosition'] ) 77 77 ? $block_attributes['style']['background']['backgroundPosition'] 78 78 : null; 79 $background_repeat 79 $background_repeat = isset( $block_attributes['style']['background']['backgroundRepeat'] ) 80 80 ? $block_attributes['style']['background']['backgroundRepeat'] 81 81 : null;
Note: See TracChangeset
for help on using the changeset viewer.