Make WordPress Core


Ignore:
Timestamp:
01/29/2024 09:04:18 PM (17 months ago)
Author:
youknowriad
Message:

Editor: Update the WordPress packages to the Gutenberg 16.7 RC2 version.

This patch, somewhat small brings a lot to WordPress.
This includes features like:

  • DataViews.
  • Customization tools like box shadow, background size and repeat.
  • UI improvements in the site editor.
  • Preferences sharing between the post and site editors.
  • Unified panels and editors between post and site editors.
  • Improved template mode in the post editor.
  • Iterations to multiple interactive blocks.
  • Preparing the blocks and UI for pattern overrides.
  • and a lot more.

Props luisherranz, gziolo, isabel_brison, costdev, jonsurrell, peterwilsoncc, get_dave, antonvlasenko, desrosj.
See #60315.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/categories.php

    r55246 r57377  
    7171    ob_start();
    7272    ?>
    73     <script type='text/javascript'>
    74     /* <![CDATA[ */
     73    <script>
    7574    ( function() {
    7675        var dropdown = document.getElementById( '<?php echo esc_js( $dropdown_id ); ?>' );
     
    8281        dropdown.onchange = onCatChange;
    8382    })();
    84     /* ]]> */
    8583    </script>
    8684    <?php
    87     return ob_get_clean();
     85    return wp_get_inline_script_tag( str_replace( array( '<script>', '</script>' ), '', ob_get_clean() ) );
    8886}
    8987
Note: See TracChangeset for help on using the changeset viewer.