diff --git src/wp-admin/includes/admin-filters.php src/wp-admin/includes/admin-filters.php
index 02b49c4..7c30af0 100644
|
|
|
add_action( 'admin_head', 'wp_site_icon' );
|
| 44 | 44 | add_action( 'admin_head', '_ipad_meta' ); |
| 45 | 45 | |
| 46 | 46 | // Prerendering. |
| 47 | | add_filter( 'admin_head', 'wp_resource_hints' ); |
| | 47 | add_filter( 'admin_print_styles', 'wp_resource_hints' ); |
| 48 | 48 | |
| 49 | 49 | add_action( 'admin_print_scripts-post.php', 'wp_page_reload_on_back_button_js' ); |
| 50 | 50 | add_action( 'admin_print_scripts-post-new.php', 'wp_page_reload_on_back_button_js' ); |
diff --git src/wp-includes/default-filters.php src/wp-includes/default-filters.php
index b60bee8..a751bd2 100644
|
|
|
add_filter( 'rest_authentication_errors', 'rest_cookie_check_errors', 100 );
|
| 229 | 229 | // Actions |
| 230 | 230 | add_action( 'wp_head', '_wp_render_title_tag', 1 ); |
| 231 | 231 | add_action( 'wp_head', 'wp_enqueue_scripts', 1 ); |
| | 232 | add_action( 'wp_head', 'wp_resource_hints', 1 ); |
| 232 | 233 | add_action( 'wp_head', 'feed_links', 2 ); |
| 233 | 234 | add_action( 'wp_head', 'feed_links_extra', 3 ); |
| 234 | 235 | add_action( 'wp_head', 'rsd_link' ); |
| … |
… |
add_action( 'wp_head', 'wp_print_styles', 8 );
|
| 242 | 243 | add_action( 'wp_head', 'wp_print_head_scripts', 9 ); |
| 243 | 244 | add_action( 'wp_head', 'wp_generator' ); |
| 244 | 245 | add_action( 'wp_head', 'rel_canonical' ); |
| 245 | | add_action( 'wp_head', 'wp_resource_hints' ); |
| 246 | 246 | add_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 ); |
| 247 | 247 | add_action( 'wp_head', 'wp_site_icon', 99 ); |
| 248 | 248 | add_action( 'wp_footer', 'wp_print_footer_scripts', 20 ); |