-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Trac 64389: Refine hoisted stylesheet ordering in classic themes #10875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
+374
−140
Closed
Changes from 6 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
ded6e2e
Add failing test case to capture the Elementor scenario
westonruter 485549b
Add global-styles placeholder which is replaced during hoisting
westonruter ec819ad
Add test case for blockless theme without theme.json
westonruter 2f8713c
Ensure global styles placeholder is removed even when there is no glo…
westonruter 2282411
Use actual CSS instead of comment in case a minifier tries to strip o…
westonruter b7b1740
Remove obsolete conditions for inserting global-styles
westonruter 4f99b7d
Refine comment copy
westonruter 45ec7f4
Update return tag for data provider to reflect new array shape
westonruter ff8cbc1
Fix priority in comment regarding wp_custom_css_cb()
westonruter 48eb4f6
Preserve CSS cascade so wp-block-library inline styles appear after i…
westonruter 062fdad
Merge branch 'trunk' of https://github.com/WordPress/wordpress-develo…
westonruter 75eb70a
Merge branch 'trunk' into trac-64389
westonruter 2cf0787
Leverage HTML Tag Processor in test
westonruter 6b5633d
Use HTML Tag Processor to safely construct STYLE tag
westonruter 80472f0
Add conditional return types and remove redundant param type for has_…
westonruter 0c0f529
Fix PHPStan level 8 issues in wp_hoist_late_printed_styles()
westonruter c82418b
Address PHPStan issues with test_wp_hoist_late_printed_styles
westonruter e72fc45
Clarify comment
westonruter d54326f
Eliminate looking for classic-theme-styles in favor of adding placeho…
westonruter c09f349
Remove obsolete references to classic-theme-styles
westonruter 59bdc8d
Fix grammatical typo in comment
westonruter ddcb748
Account for possibility of no sourceURL comment being present
westonruter 87a5ccb
Improve grammar in comment
westonruter 17443f4
Remove arg from being passed needlessly to assert closure
westonruter 59ffd4f
Merge branch 'trunk' of https://github.com/WordPress/wordpress-develo…
westonruter d1565c2
Revert "Add conditional return types and remove redundant param type …
westonruter 70b2d17
Merge branch 'trunk' into trac-64389
westonruter 9506133
Merge branch 'trunk' into trac-64389
westonruter dc609a3
Remove unused bookmarks and logic to set them
westonruter 1884007
Fix docs for expected_styles param
westonruter 674d062
Merge branch 'trunk' into trac-64389
westonruter 7318ad9
Make it clear changes were introduced in 6.9
westonruter 01c2393
Make it clear that style injection is replacing the placeholder
westonruter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2546,21 +2546,42 @@ function wp_enqueue_global_styles() { | |
| $is_block_theme = wp_is_block_theme(); | ||
| $is_classic_theme = ! $is_block_theme; | ||
|
|
||
| /* | ||
| * Global styles should be printed in the head for block themes, or for classic themes when loading assets on | ||
| * demand is disabled, which is the default. | ||
| * The footer should only be used for classic themes when loading assets on demand is enabled. | ||
| /** | ||
| * Global styles should be printed in the HEAD for block themes, or for classic themes when loading assets on | ||
| * demand is disabled (which is no longer the default). | ||
| * | ||
| * See https://core.trac.wordpress.org/ticket/53494 and https://core.trac.wordpress.org/ticket/61965. | ||
| * @link https://core.trac.wordpress.org/ticket/53494 | ||
| * @link https://core.trac.wordpress.org/ticket/61965 | ||
| */ | ||
| if ( | ||
| ( $is_block_theme && doing_action( 'wp_footer' ) ) || | ||
| ( $is_classic_theme && doing_action( 'wp_footer' ) && ! $assets_on_demand ) || | ||
| ( $is_classic_theme && doing_action( 'wp_enqueue_scripts' ) && $assets_on_demand ) | ||
| doing_action( 'wp_footer' ) && | ||
| ( | ||
| $is_block_theme || | ||
| ( $is_classic_theme && ! $assets_on_demand ) | ||
| ) | ||
| ) { | ||
| return; | ||
| } | ||
|
|
||
| /** | ||
| * The footer should only be used for classic themes when loading assets on demand is enabled. This is now the | ||
| * default with the introduction of hoisting late-printed styles (via {@see wp_load_classic_theme_block_styles_on_demand()}). | ||
|
westonruter marked this conversation as resolved.
|
||
| * So even though the main global styles are not printed here in the HEAD for classic themes with on-demand asset | ||
| * loading, placeholder for the global styles is still enqueued. Then when {@see wp_hoist_late_printed_styles()} | ||
| * processes the output buffer, it can locate the placeholder and inject the global styles from the footer in to the | ||
|
westonruter marked this conversation as resolved.
Outdated
|
||
| * HEAD. | ||
| * | ||
| * @link https://core.trac.wordpress.org/ticket/64099 | ||
| */ | ||
| if ( $is_classic_theme && doing_action( 'wp_enqueue_scripts' ) && $assets_on_demand ) { | ||
| if ( has_action( 'wp_template_enhancement_output_buffer_started', 'wp_hoist_late_printed_styles' ) ) { | ||
| wp_register_style( 'wp-global-styles-placeholder', false ); | ||
| wp_add_inline_style( 'wp-global-styles-placeholder', ':root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." }' ); | ||
|
westonruter marked this conversation as resolved.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thats cure, I've never seen style comments added like this.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just a CSS custom property (variable) leveraged as a comment 😄 |
||
| wp_enqueue_style( 'wp-global-styles-placeholder' ); | ||
| } | ||
| return; | ||
| } | ||
|
|
||
| /* | ||
| * If loading the CSS for each block separately, then load the theme.json CSS conditionally. | ||
| * This removes the CSS from the global-styles stylesheet and adds it to the inline CSS for each block. | ||
|
|
@@ -3866,11 +3887,27 @@ public function remove() { | |
|
|
||
| $this->lexical_updates[] = new WP_HTML_Text_Replacement( $span->start, $span->length, '' ); | ||
| } | ||
|
|
||
| /** | ||
| * Replaces the current token. | ||
| * | ||
| * @param string $text Text to replace with. | ||
| */ | ||
| public function replace( string $text ) { | ||
| $span = $this->get_span(); | ||
|
|
||
| $this->lexical_updates[] = new WP_HTML_Text_Replacement( $span->start, $span->length, $text ); | ||
| } | ||
| }; | ||
|
|
||
| // Locate the insertion points in the HEAD. | ||
| while ( $processor->next_tag( array( 'tag_closers' => 'visit' ) ) ) { | ||
| if ( | ||
| 'STYLE' === $processor->get_tag() && | ||
| 'wp-global-styles-placeholder-inline-css' === $processor->get_attribute( 'id' ) | ||
| ) { | ||
| $processor->set_bookmark( 'wp_global_styles_placeholder' ); | ||
| } elseif ( | ||
| 'STYLE' === $processor->get_tag() && | ||
| 'wp-block-library-inline-css' === $processor->get_attribute( 'id' ) | ||
| ) { | ||
|
|
@@ -3902,6 +3939,16 @@ public function remove() { | |
| } | ||
| } | ||
|
|
||
| /** | ||
| * Replace the placeholder for global styles enqueued during {@see wp_enqueue_global_styles()}. This is done | ||
| * even if $printed_global_styles is empty. | ||
| */ | ||
| if ( $processor->has_bookmark( 'wp_global_styles_placeholder' ) ) { | ||
| $processor->seek( 'wp_global_styles_placeholder' ); | ||
| $processor->replace( $printed_global_styles ); | ||
| $printed_global_styles = ''; | ||
| } | ||
|
|
||
| /* | ||
| * Insert block styles right after wp-block-library (if it is present). The placeholder CSS comment will | ||
| * always be added to the wp-block-library inline style since it gets printed at `wp_head` before the blocks | ||
|
|
@@ -3937,34 +3984,13 @@ public function remove() { | |
| $inserted_after .= $printed_other_block_styles; | ||
| } | ||
| $printed_other_block_styles = ''; | ||
|
|
||
| // If there aren't any other styles printed at enqueue_block_assets either, then the global styles need to also be printed here. | ||
| if ( ! $processor->has_bookmark( 'last_style_at_enqueue_block_assets' ) ) { | ||
| if ( '' !== $printed_global_styles ) { | ||
| $inserted_after .= $printed_global_styles; | ||
| } | ||
| $printed_global_styles = ''; | ||
| } | ||
| } | ||
|
|
||
| if ( '' !== $inserted_after ) { | ||
| $processor->insert_after( "\n" . $inserted_after ); | ||
| } | ||
| } | ||
|
|
||
| // Insert global-styles after the styles enqueued at enqueue_block_assets. | ||
| if ( '' !== $printed_global_styles && $processor->has_bookmark( 'last_style_at_enqueue_block_assets' ) ) { | ||
| $processor->seek( 'last_style_at_enqueue_block_assets' ); | ||
|
|
||
| $processor->insert_after( "\n" . $printed_global_styles ); | ||
| $printed_global_styles = ''; | ||
|
|
||
| if ( ! $processor->has_bookmark( 'classic_theme_styles' ) && '' !== $printed_other_block_styles ) { | ||
| $processor->insert_after( "\n" . $printed_other_block_styles ); | ||
| $printed_other_block_styles = ''; | ||
| } | ||
| } | ||
|
|
||
| // Insert third-party block styles right after the classic-theme-styles. | ||
| if ( '' !== $printed_other_block_styles && $processor->has_bookmark( 'classic_theme_styles' ) ) { | ||
| $processor->seek( 'classic_theme_styles' ); | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.