Changeset 35235 for trunk/src/wp-includes/default-filters.php
- Timestamp:
- 10/17/2015 01:20:19 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-filters.php
r35103 r35235 447 447 add_action( 'wp_head', 'wp_oembed_add_host_js' ); 448 448 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' );449 add_action( 'embed_head', 'print_emoji_detection_script' ); 450 add_action( 'embed_head', 'print_emoji_styles' ); 451 add_action( 'embed_head', 'print_embed_styles' ); 452 add_action( 'embed_head', 'print_embed_scripts' ); 453 add_action( 'embed_head', 'wp_print_head_scripts', 20 ); 454 add_action( 'embed_head', 'wp_print_styles', 20 ); 455 add_action( 'embed_head', 'wp_no_robots' ); 456 add_action( 'embed_head', 'rel_canonical' ); 457 add_action( 'embed_head', 'locale_stylesheet' ); 458 458 459 459 add_action( 'oembed_footer', 'wp_print_footer_scripts', 20 ); 460 460 461 add_filter( 'excerpt_more', 'wp_ oembed_excerpt_more',20 );461 add_filter( 'excerpt_more', 'wp_embed_excerpt_more', 20 ); 462 462 add_filter( 'the_excerpt_embed', 'wptexturize' ); 463 463 add_filter( 'the_excerpt_embed', 'convert_chars' ); 464 464 add_filter( 'the_excerpt_embed', 'wpautop' ); 465 465 add_filter( 'the_excerpt_embed', 'shortcode_unautop' ); 466 add_filter( 'the_excerpt_embed', 'wp_ oembed_excerpt_attachment');466 add_filter( 'the_excerpt_embed', 'wp_embed_excerpt_attachment' ); 467 467 468 468 add_filter( 'oembed_dataparse', 'wp_filter_oembed_result', 10, 3 );
Note: See TracChangeset
for help on using the changeset viewer.