Make WordPress Core

Ticket #10867: 10867.2.diff

File 10867.2.diff, 1.4 KB (added by ryan, 14 years ago)
  • wp-includes/default-filters.php

     
    182182add_action( 'wp_head',             'index_rel_link'                       );
    183183add_action( 'wp_head',             'parent_post_rel_link',          10, 0 );
    184184add_action( 'wp_head',             'start_post_rel_link',           10, 0 );
    185 add_action( 'wp_head',             'adjacent_posts_rel_link',      10, 0 );
     185add_action( 'wp_head',             'adjacent_posts_rel_link_wp_head', 10, 0 );
    186186add_action( 'wp_head',             'locale_stylesheet'                    );
    187187add_action( 'publish_future_post', 'check_and_publish_future_post', 10, 1 );
    188188add_action( 'wp_head',             'noindex',                       1     );
  • wp-includes/link-template.php

     
    10951095}
    10961096
    10971097/**
     1098 * Display relational links for the posts adjacent to the current post for single post pages.
     1099 *
     1100 * @since 3.0.0
     1101 *
     1102 */
     1103function adjacent_posts_rel_link_wp_head() {
     1104        if ( !is_singular() || is_attachment() )
     1105                return;
     1106        adjacent_posts_rel_link();
     1107}
     1108
     1109/**
    10981110 * Display relational link for the next post adjacent to the current post.
    10991111 *
    11001112 * @since 2.8.0