diff --git wp-includes/default-filters.php wp-includes/default-filters.php
index 8f0237028d..1a21ab413b 100644
|
|
|
245 | 245 | add_action( 'wp_head', 'feed_links', 2 ); |
246 | 246 | add_action( 'wp_head', 'feed_links_extra', 3 ); |
247 | 247 | add_action( 'wp_head', 'rsd_link' ); |
248 | | add_action( 'wp_head', 'wlwmanifest_link' ); |
249 | 248 | add_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); |
250 | 249 | add_action( 'wp_head', 'locale_stylesheet' ); |
251 | 250 | add_action( 'publish_future_post', 'check_and_publish_future_post', 10, 1 ); |
diff --git wp-includes/general-template.php wp-includes/general-template.php
index 087f47ad2a..d22ba22f59 100644
|
|
function rsd_link() { |
2748 | 2748 | } |
2749 | 2749 | |
2750 | 2750 | /** |
2751 | | * Display the link to the Windows Live Writer manifest file. |
2752 | | * |
2753 | | * @link https://msdn.microsoft.com/en-us/library/bb463265.aspx |
2754 | | * @since 2.3.1 |
2755 | | */ |
2756 | | function wlwmanifest_link() { |
2757 | | echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="', |
2758 | | includes_url( 'wlwmanifest.xml' ), '" /> ', "\n"; |
2759 | | } |
2760 | | |
2761 | | /** |
2762 | 2751 | * Displays a noindex meta tag if required by the blog configuration. |
2763 | 2752 | * |
2764 | 2753 | * If a blog is marked as not being public then the noindex meta tag will be |