PINGBACKS: rather than sending the X-Pingback HTTP header on every single request for fun, perhaps only send it on single posts with pings open.

See #20226.

Built from https://develop.svn.wordpress.org/trunk@34442


git-svn-id: http://core.svn.wordpress.org/trunk@34406 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-09-22 18:47:25 +00:00
parent 32358bbcdd
commit 3bbd53c717
2 changed files with 11 additions and 2 deletions

View File

@ -365,7 +365,7 @@ class WP {
* @since 2.0.0
*/
public function send_headers() {
$headers = array('X-Pingback' => get_bloginfo('pingback_url'));
$headers = array();
$status = null;
$exit_required = false;
@ -595,6 +595,15 @@ class WP {
// Never 404 for the admin, robots, or if we found posts.
if ( is_admin() || is_robots() || $wp_query->posts ) {
// Only set X-Pingback for single posts.
if ( is_single() ) {
$p = get_queried_object();
if ( $p && pings_open( $p ) ) {
@header( 'X-Pingback: ' . get_bloginfo( 'pingback_url' ) );
}
}
status_header( 200 );
return;
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34441';
$wp_version = '4.4-alpha-34442';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.