diff --git a/src/wp-includes/default-filters.php b/src/wp-includes/default-filters.php index cfdd7099cf..8bdebe5b8d 100644 --- a/src/wp-includes/default-filters.php +++ b/src/wp-includes/default-filters.php @@ -439,32 +439,31 @@ add_filter( 'image_send_to_editor', 'image_add_caption', 20, 8 ); add_filter( 'media_send_to_editor', 'image_media_send_to_editor', 10, 3 ); // Embeds +add_action( 'parse_query', 'wp_oembed_parse_query' ); -add_action( 'parse_query', 'wp_oembed_parse_query' ); +add_action( 'wp_head', 'wp_oembed_add_discovery_links' ); +add_action( 'wp_head', 'wp_oembed_add_host_js' ); -add_action( 'wp_head', 'wp_oembed_add_discovery_links' ); -add_action( 'wp_head', 'wp_oembed_add_host_js' ); +add_action( 'oembed_head', 'print_emoji_detection_script' ); +add_action( 'oembed_head', 'print_emoji_styles' ); +add_action( 'oembed_head', 'print_oembed_embed_styles' ); +add_action( 'oembed_head', 'print_oembed_embed_scripts' ); +add_action( 'oembed_head', 'wp_print_head_scripts', 20 ); +add_action( 'oembed_head', 'wp_print_styles', 20 ); +add_action( 'oembed_head', 'wp_no_robots' ); +add_action( 'oembed_head', 'rel_canonical' ); +add_action( 'oembed_head', 'locale_stylesheet' ); -add_action( 'oembed_head', 'print_emoji_detection_script' ); -add_action( 'oembed_head', 'print_emoji_styles' ); -add_action( 'oembed_head', 'print_oembed_embed_styles' ); -add_action( 'oembed_head', 'print_oembed_embed_scripts' ); -add_action( 'oembed_head', 'wp_print_head_scripts', 20 ); -add_action( 'oembed_head', 'wp_print_styles', 20 ); -add_action( 'oembed_head', 'wp_no_robots' ); -add_action( 'oembed_head', 'rel_canonical' ); -add_action( 'oembed_head', 'locale_stylesheet' ); +add_action( 'oembed_footer', 'wp_print_footer_scripts', 20 ); -add_action( 'oembed_footer', 'wp_print_footer_scripts', 20 ); +add_filter( 'excerpt_more', 'wp_oembed_excerpt_more', 20 ); +add_filter( 'the_excerpt_embed', 'wptexturize' ); +add_filter( 'the_excerpt_embed', 'convert_chars' ); +add_filter( 'the_excerpt_embed', 'wpautop' ); +add_filter( 'the_excerpt_embed', 'shortcode_unautop' ); +add_filter( 'the_excerpt_embed', 'wp_oembed_excerpt_attachment' ); -add_filter( 'excerpt_more', 'wp_oembed_excerpt_more', 20 ); -add_filter( 'the_excerpt_embed', 'wptexturize' ); -add_filter( 'the_excerpt_embed', 'convert_chars' ); -add_filter( 'the_excerpt_embed', 'wpautop' ); -add_filter( 'the_excerpt_embed', 'shortcode_unautop' ); -add_filter( 'the_excerpt_embed', 'wp_oembed_excerpt_attachment' ); - -add_filter( 'oembed_dataparse', 'wp_filter_oembed_result', 10, 3 ); +add_filter( 'oembed_dataparse', 'wp_filter_oembed_result', 10, 3 ); add_filter( 'oembed_response_data', 'get_oembed_response_data_rich', 10, 4 ); unset( $filter, $action );