Make WordPress Core


Ignore:
Timestamp:
10/07/2025 11:32:04 PM (5 months ago)
Author:
westonruter
Message:

Bundled Themes: Use wp_print_inline_script_tag() when available and include sourceURL for JS.

Instead of manually constructing the markup for SCRIPT tags, leverage wp_print_inline_script_tag() when available to do the construction while also ensuring filters may inject additional attributes on the SCRIPT tags, such as nonce for CSP. When the function is not available (prior to WP 5.7), fall back to the manual markup construction.

This also adds the sourceURL comments to the inline scripts to facilitate debugging, per #63887.

Developed in https://github.com/WordPress/wordpress-develop/pull/9416.

Follow-up to [60909], [60899].

Props debarghyabanerjee, westonruter, hbhalodia, peterwilsoncc, sabernhardt, poena.
See #63887, #59446.
Fixes #63806.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwentyone/inc/template-functions.php

    r60537 r60913  
    7575 */
    7676function twenty_twenty_one_supports_js() {
    77     echo '<script>document.body.classList.remove("no-js");</script>';
     77    $js  = "document.body.classList.remove('no-js');";
     78    $js .= "\n//# sourceURL=" . rawurlencode( __FUNCTION__ );
     79
     80    if ( function_exists( 'wp_print_inline_script_tag' ) ) {
     81        wp_print_inline_script_tag( $js );
     82    } else {
     83        echo "<script>$js</script>\n";
     84    }
    7885}
    7986add_action( 'wp_footer', 'twenty_twenty_one_supports_js' );
Note: See TracChangeset for help on using the changeset viewer.