diff --git a/wp-includes/default-filters.php b/wp-includes/default-filters.php
index bd8500e..fb83efe 100644
a
|
b
|
add_action( 'wp_head', 'feed_links_extra', 3 ); |
274 | 274 | add_action( 'wp_head', 'rsd_link' ); |
275 | 275 | add_action( 'wp_head', 'wlwmanifest_link' ); |
276 | 276 | add_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); |
| 277 | add_action( 'wp_head', 'pingback_url' ); |
277 | 278 | add_action( 'wp_head', 'locale_stylesheet' ); |
278 | 279 | add_action( 'publish_future_post', 'check_and_publish_future_post', 10, 1 ); |
279 | 280 | add_action( 'wp_head', 'noindex', 1 ); |
diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php
index 57a7b67..d212e9d 100644
a
|
b
|
function rsd_link() { |
2820 | 2820 | } |
2821 | 2821 | |
2822 | 2822 | /** |
| 2823 | * Display the Pingback URL. |
| 2824 | * |
| 2825 | */ |
| 2826 | function pingback_link() { |
| 2827 | if ( is_singular() && pings_open( get_queried_object() ) ) : |
| 2828 | echo '<link rel="pingback" href="' . esc_url( get_bloginfo( 'pingback_url' ) ) . '" />' . "\n"; |
| 2829 | endif; |
| 2830 | } |
| 2831 | /** |
2823 | 2832 | * Display the link to the Windows Live Writer manifest file. |
2824 | 2833 | * |
2825 | 2834 | * @link https://msdn.microsoft.com/en-us/library/bb463265.aspx |