Ensure that get_bloginfo( 'pingback_url' ) uses site_url(), for SSL awareness.
props technosailor. fixes #25418. Built from https://develop.svn.wordpress.org/trunk@25671 git-svn-id: http://core.svn.wordpress.org/trunk@25587 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
524b62c5f6
commit
32917eb0bd
|
@ -478,7 +478,7 @@ function get_bloginfo( $show = '', $filter = 'raw' ) {
|
|||
$output = get_feed_link('comments_rss2');
|
||||
break;
|
||||
case 'pingback_url':
|
||||
$output = get_option('siteurl') .'/xmlrpc.php';
|
||||
$output = site_url( 'xmlrpc.php' );
|
||||
break;
|
||||
case 'stylesheet_url':
|
||||
$output = get_stylesheet_uri();
|
||||
|
|
Loading…
Reference in New Issue