Make WordPress Core


Ignore:
Timestamp:
07/13/2016 12:53:06 PM (8 years ago)
Author:
ocean90
Message:

Resource Hints: Increase priority of wp_resource_hints() so hints get printed before scripts and styles.

Also run wp_resource_hints() on the login screen and in the customizer.

Props swissspidy.
Fixes #37317.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/default-filters.php

    r38010 r38046  
    230230add_action( 'wp_head',             '_wp_render_title_tag',            1     );
    231231add_action( 'wp_head',             'wp_enqueue_scripts',              1     );
     232add_action( 'wp_head',             'wp_resource_hints',               2     );
    232233add_action( 'wp_head',             'feed_links',                      2     );
    233234add_action( 'wp_head',             'feed_links_extra',                3     );
     
    243244add_action( 'wp_head',             'wp_generator'                           );
    244245add_action( 'wp_head',             'rel_canonical'                          );
    245 add_action( 'wp_head',             'wp_resource_hints'                      );
    246246add_action( 'wp_head',             'wp_shortlink_wp_head',            10, 0 );
    247247add_action( 'wp_head',             'wp_site_icon',                    99    );
     
    257257
    258258// Login actions
     259add_filter( 'login_head',          'wp_resource_hints',             8     );
    259260add_action( 'login_head',          'wp_print_head_scripts',         9     );
    260261add_action( 'login_head',          'print_admin_styles',            9     );
     
    417418add_filter( 'wp_print_scripts', 'wp_just_in_time_script_localization' );
    418419add_filter( 'print_scripts_array', 'wp_prototype_before_jquery' );
     420add_filter( 'customize_controls_print_styles', 'wp_resource_hints', 1 );
    419421
    420422add_action( 'wp_default_styles', 'wp_default_styles' );
Note: See TracChangeset for help on using the changeset viewer.