Make WordPress Core

Ticket #34444: 34444.2.diff

File 34444.2.diff, 1.2 KB (added by pratikchaskar, 9 years ago)

Patch refreshed, moved add_action() call next to the other embed_footer action

  • src/wp-includes/default-filters.php

    diff --git src/wp-includes/default-filters.php src/wp-includes/default-filters.php
    index bbe9f24..f6999cb 100644
    add_action( 'wp_head', 'wp_oembed_add_host_js' ); 
    446446add_action( 'embed_head',           'print_emoji_detection_script'         );
    447447add_action( 'embed_head',           'print_emoji_styles'                   );
    448448add_action( 'embed_head',           'print_embed_styles'                   );
    449 add_action( 'embed_head',           'print_embed_scripts'                  );
    450449add_action( 'embed_head',           'wp_print_head_scripts',         20    );
    451450add_action( 'embed_head',           'wp_print_styles',               20    );
    452451add_action( 'embed_head',           'wp_no_robots'                         );
    453452add_action( 'embed_head',           'rel_canonical'                        );
    454453add_action( 'embed_head',           'locale_stylesheet'                    );
    455454
     455add_action( 'embed_footer',         'print_embed_scripts'                  );
    456456add_action( 'embed_footer',         'wp_print_footer_scripts',       20    );
    457457
    458458add_filter( 'excerpt_more',         'wp_embed_excerpt_more',         20    );