Skip to content
Closed
Show file tree
Hide file tree
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 Feb 6, 2026
485549b
Add global-styles placeholder which is replaced during hoisting
westonruter Feb 6, 2026
ec819ad
Add test case for blockless theme without theme.json
westonruter Feb 6, 2026
2f8713c
Ensure global styles placeholder is removed even when there is no glo…
westonruter Feb 6, 2026
2282411
Use actual CSS instead of comment in case a minifier tries to strip o…
westonruter Feb 6, 2026
b7b1740
Remove obsolete conditions for inserting global-styles
westonruter Feb 6, 2026
4f99b7d
Refine comment copy
westonruter Feb 6, 2026
45ec7f4
Update return tag for data provider to reflect new array shape
westonruter Feb 6, 2026
ff8cbc1
Fix priority in comment regarding wp_custom_css_cb()
westonruter Feb 6, 2026
48eb4f6
Preserve CSS cascade so wp-block-library inline styles appear after i…
westonruter Feb 10, 2026
062fdad
Merge branch 'trunk' of https://github.com/WordPress/wordpress-develo…
westonruter Feb 10, 2026
75eb70a
Merge branch 'trunk' into trac-64389
westonruter Mar 4, 2026
2cf0787
Leverage HTML Tag Processor in test
westonruter Mar 4, 2026
6b5633d
Use HTML Tag Processor to safely construct STYLE tag
westonruter Mar 4, 2026
80472f0
Add conditional return types and remove redundant param type for has_…
westonruter Mar 4, 2026
0c0f529
Fix PHPStan level 8 issues in wp_hoist_late_printed_styles()
westonruter Mar 4, 2026
c82418b
Address PHPStan issues with test_wp_hoist_late_printed_styles
westonruter Mar 4, 2026
e72fc45
Clarify comment
westonruter Mar 4, 2026
d54326f
Eliminate looking for classic-theme-styles in favor of adding placeho…
westonruter Mar 4, 2026
c09f349
Remove obsolete references to classic-theme-styles
westonruter Mar 4, 2026
59bdc8d
Fix grammatical typo in comment
westonruter Mar 4, 2026
ddcb748
Account for possibility of no sourceURL comment being present
westonruter Mar 4, 2026
87a5ccb
Improve grammar in comment
westonruter Mar 4, 2026
17443f4
Remove arg from being passed needlessly to assert closure
westonruter Mar 4, 2026
59ffd4f
Merge branch 'trunk' of https://github.com/WordPress/wordpress-develo…
westonruter Mar 5, 2026
d1565c2
Revert "Add conditional return types and remove redundant param type …
westonruter Mar 5, 2026
70b2d17
Merge branch 'trunk' into trac-64389
westonruter Mar 10, 2026
9506133
Merge branch 'trunk' into trac-64389
westonruter Mar 10, 2026
dc609a3
Remove unused bookmarks and logic to set them
westonruter Mar 10, 2026
1884007
Fix docs for expected_styles param
westonruter Mar 10, 2026
674d062
Merge branch 'trunk' into trac-64389
westonruter Mar 11, 2026
7318ad9
Make it clear changes were introduced in 6.9
westonruter Mar 11, 2026
01c2393
Make it clear that style injection is replacing the placeholder
westonruter Mar 11, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 55 additions & 29 deletions src/wp-includes/script-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Comment thread
westonruter marked this conversation as resolved.
Outdated
*
* 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()}).
Comment thread
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
Comment thread
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." }' );
Comment thread
westonruter marked this conversation as resolved.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thats cure, I've never seen style comments added like this.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The 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.
Expand Down Expand Up @@ -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' )
) {
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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' );
Expand Down
Loading
Loading