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