Make WordPress Core


Ignore:
Timestamp:
10/07/2022 09:38:15 AM (2 years ago)
Author:
audrasjb
Message:

Editor: Add missing blocks origin to theme.json.

This changeset updates the blocks origin name from core to blocks and adds it to the list of valid origins for theme.json.
(See the original fix in Gutenberg's PR 44363).

Why?

  • This new origin was missing from the list.
  • The core name is not reflective of what it does, as this data origin is related to block styles, whether they come with WordPress or third-party blocks.
  • The existing filter for this piece of data is called theme_json_blocks, to reflect it filters "block" data.
  • Though core origin was used in the past for default, this commit reverts it. Why? It was confusing. The goal is to use names that communicate what part of the pipeline are processing (default > blocks > theme > custom).

How?

  • Renames the string, from core to blocks.
  • Adds blocks to the list of valid origins.
  • Verifies that the $theme_json->get_stylesheet() call uses the proper $origins at all times.

Follow-up to [54162], [54251].

Props oandregal, czapla, jorgefilipecosta, scruffian, bernhard-reiter hellofromTonya.
See #56467.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/script-loader.php

    r54386 r54408  
    24102410
    24112411    /*
    2412      * If we are loading CSS for each block separately, then we can load the theme.json CSS conditionally.
     2412     * If loading the CSS for each block separately, then load the theme.json CSS conditionally.
    24132413     * This removes the CSS from the global-styles stylesheet and adds it to the inline CSS for each block.
     2414     * This filter must be registered before calling wp_get_global_stylesheet();
    24142415     */
    2415     if ( $separate_assets ) {
    2416         add_filter( 'theme_json_get_style_nodes', 'wp_filter_out_block_nodes' );
    2417         // Add each block as an inline css.
    2418         wp_add_global_styles_for_blocks();
    2419     }
     2416    add_filter( 'theme_json_get_style_nodes', 'wp_filter_out_block_nodes' );
    24202417
    24212418    $stylesheet = wp_get_global_stylesheet();
     
    24282425    wp_add_inline_style( 'global-styles', $stylesheet );
    24292426    wp_enqueue_style( 'global-styles' );
     2427
     2428    // Add each block as an inline css.
     2429    wp_add_global_styles_for_blocks();
    24302430}
    24312431
Note: See TracChangeset for help on using the changeset viewer.