Make WordPress Core


Ignore:
Timestamp:
09/12/2023 12:04:15 AM (12 months ago)
Author:
westonruter
Message:

Bundled Themes: Use defer loading strategy for theme scripts.

  • Add defer loading strategy for all frontend end-user theme scripts (excluding Customizer preview).
  • Move scripts to the head which relate to the initial page viewport to ensure they start loading earlier and execute sooner while still not blocking rendering.
  • Update Twenty Twenty's script loader (TwentyTwenty_Script_Loader) to support core's built-in script loading strategies (#12009), while also retaining backwards-compatibility for child themes that may set async and defer script data.
  • Update the main script loading strategy in Twenty Twenty from async to defer for better performance on repeat page views, since when an async script is cached it will block rendering.

Props westonruter, flixos90, sabernhardt.
Fixes #59316.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentysixteen/functions.php

    r56526 r56556  
    424424    }
    425425
    426     wp_enqueue_script( 'twentysixteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20230629', array( 'in_footer' => true ) );
     426    wp_enqueue_script(
     427        'twentysixteen-script',
     428        get_template_directory_uri() . '/js/functions.js',
     429        array( 'jquery' ),
     430        '20230629',
     431        array(
     432            'in_footer' => false, // Because involves header.
     433            'strategy'  => 'defer',
     434        )
     435    );
    427436
    428437    wp_localize_script(
Note: See TracChangeset for help on using the changeset viewer.