diff --git a/wp-includes/class-wp.php b/wp-includes/class-wp.php index b4d2e11328..cac538d6cd 100644 --- a/wp-includes/class-wp.php +++ b/wp-includes/class-wp.php @@ -662,7 +662,7 @@ class WP { // Only set X-Pingback for single posts that allow pings. if ( $p && pings_open( $p ) ) { - @header( 'X-Pingback: ' . get_bloginfo( 'pingback_url' ) ); + @header( 'X-Pingback: ' . get_bloginfo( 'pingback_url', 'display' ) ); } // check for paged content that exceeds the max number of pages diff --git a/wp-includes/version.php b/wp-includes/version.php index 2a048eea7a..b95c7e6e40 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38670'; +$wp_version = '4.7-alpha-38671'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.