Changes between Initial Version and Version 1 of Ticket #56218
- Timestamp:
- 07/18/2022 09:24:03 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #56218
- Property Focuses css added
-
Property
Component
changed from
General
toEditor
-
Ticket #56218 – Description
initial v1 1 1 This issue has been recreated in 4 different themes, Twenty Twenty-Two, Astra, & 2 Genesis themes. Also, with all plugins disabled, and all caches cleared. 2 2 3 I've been using the div class="wp-block-columns"markup via the code editor on over 300 articles on my WordPress site. I originally copied all of the markup directly from the WordPress block editor, so it was totally valid markup.3 I've been using the `div class="wp-block-columns"` markup via the code editor on over 300 articles on my WordPress site. I originally copied all of the markup directly from the WordPress block editor, so it was totally valid markup. 4 4 5 5 Everything worked fine through several WordPress updates, until WordPress 6. Now, when using WordPress 6, this markup no longer styles the block columns, and all columns merge into one block and lose their margins and padding. 6 6 7 If I look at the current WordPress 6 block editor columns markup, it has changed, and now has the markup enclosed in several “remarks” – eg. `<!– wp:columns –> 8 <div class=”wp-block-columns”><!– wp:column –>` 7 If I look at the current WordPress 6 block editor columns markup, it has changed, and now has the markup enclosed in several “remarks” – e.g. 8 {{{ 9 <!-- wp:columns --> 10 <div class="wp-block-columns"><!-- wp:column --> 11 }}} 9 12 10 So this shows that WordPress 6 has changed how it deals with wp-block-columnsmarkup, but has not ensured backward compatibility with the previous markup. This essentially breaks my website, so I am unable to update to WordPress 6.13 So this shows that WordPress 6 has changed how it deals with `wp-block-columns` markup, but has not ensured backward compatibility with the previous markup. This essentially breaks my website, so I am unable to update to WordPress 6. 11 14