Make WordPress Core


Ignore:
Timestamp:
10/17/2015 01:20:19 AM (9 years ago)
Author:
SergeyBiryukov
Message:

Embeds: Rename files, functions, and hooks added in [34903] to make it more clear what is oEmbed-specific and what isn't.

See https://core.trac.wordpress.org/ticket/34272#comment:7 for full list of renamed functions and hooks.

Props swissspidy.
Fixes #34272.

File:
1 edited

Legend:

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

    r35103 r35235  
    447447add_action( 'wp_head',              'wp_oembed_add_host_js'                );
    448448
    449 add_action( 'oembed_head',          'print_emoji_detection_script'         );
    450 add_action( 'oembed_head',          'print_emoji_styles'                   );
    451 add_action( 'oembed_head',          'print_oembed_embed_styles'            );
    452 add_action( 'oembed_head',          'print_oembed_embed_scripts'           );
    453 add_action( 'oembed_head',          'wp_print_head_scripts',         20    );
    454 add_action( 'oembed_head',          'wp_print_styles',               20    );
    455 add_action( 'oembed_head',          'wp_no_robots'                         );
    456 add_action( 'oembed_head',          'rel_canonical'                        );
    457 add_action( 'oembed_head',          'locale_stylesheet'                    );
     449add_action( 'embed_head',           'print_emoji_detection_script'         );
     450add_action( 'embed_head',           'print_emoji_styles'                   );
     451add_action( 'embed_head',           'print_embed_styles'                   );
     452add_action( 'embed_head',           'print_embed_scripts'                  );
     453add_action( 'embed_head',           'wp_print_head_scripts',         20    );
     454add_action( 'embed_head',           'wp_print_styles',               20    );
     455add_action( 'embed_head',           'wp_no_robots'                         );
     456add_action( 'embed_head',           'rel_canonical'                        );
     457add_action( 'embed_head',           'locale_stylesheet'                    );
    458458
    459459add_action( 'oembed_footer',        'wp_print_footer_scripts',       20    );
    460460
    461 add_filter( 'excerpt_more',         'wp_oembed_excerpt_more',        20    );
     461add_filter( 'excerpt_more',         'wp_embed_excerpt_more',         20    );
    462462add_filter( 'the_excerpt_embed',    'wptexturize'                          );
    463463add_filter( 'the_excerpt_embed',    'convert_chars'                        );
    464464add_filter( 'the_excerpt_embed',    'wpautop'                              );
    465465add_filter( 'the_excerpt_embed',    'shortcode_unautop'                    );
    466 add_filter( 'the_excerpt_embed',    'wp_oembed_excerpt_attachment'         );
     466add_filter( 'the_excerpt_embed',    'wp_embed_excerpt_attachment'          );
    467467
    468468add_filter( 'oembed_dataparse',     'wp_filter_oembed_result',       10, 3 );
Note: See TracChangeset for help on using the changeset viewer.