Sitemaps: Pass full paths to `home_url()` calls.

This makes it easier for plugins using the `home_url` filter to detect sitemap URLs.

Props Chouby.
Fixes #50592.

git-svn-id: https://develop.svn.wordpress.org/trunk@48470 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Pascal Birchler 2020-07-14 11:41:47 +00:00
parent 479a125882
commit cf4897f5d8
3 changed files with 16 additions and 27 deletions

View File

@ -75,7 +75,7 @@ class WP_Sitemaps_Index {
global $wp_rewrite; global $wp_rewrite;
if ( ! $wp_rewrite->using_permalinks() ) { if ( ! $wp_rewrite->using_permalinks() ) {
return add_query_arg( 'sitemap', 'index', home_url( '/' ) ); return home_url( '/?sitemap=index' );
} }
return home_url( '/wp-sitemap.xml' ); return home_url( '/wp-sitemap.xml' );

View File

@ -145,35 +145,24 @@ abstract class WP_Sitemaps_Provider {
public function get_sitemap_url( $name, $page ) { public function get_sitemap_url( $name, $page ) {
global $wp_rewrite; global $wp_rewrite;
if ( ! $wp_rewrite->using_permalinks() ) {
return add_query_arg(
// Accounts for cases where name is not included, ex: sitemaps-users-1.xml. // Accounts for cases where name is not included, ex: sitemaps-users-1.xml.
array_filter( $params = array_filter(
array( array(
'sitemap' => $this->name, 'sitemap' => $this->name,
'sitemap-subtype' => $name, 'sitemap-subtype' => $name,
'paged' => $page, 'paged' => $page,
) )
),
home_url( '/' )
); );
}
$basename = sprintf( $basename = sprintf(
'/wp-sitemap-%1$s.xml', '/wp-sitemap-%1$s.xml',
implode( implode( '-', $params )
'-',
// Accounts for cases where name is not included, ex: sitemaps-users-1.xml.
array_filter(
array(
$this->name,
$name,
(string) $page,
)
)
)
); );
if ( ! $wp_rewrite->using_permalinks() ) {
$basename = '/?' . http_build_query( $params, null, '&' );
}
return home_url( $basename ); return home_url( $basename );
} }

View File

@ -67,7 +67,7 @@ class WP_Sitemaps_Renderer {
$sitemap_url = home_url( '/wp-sitemap.xsl' ); $sitemap_url = home_url( '/wp-sitemap.xsl' );
if ( ! $wp_rewrite->using_permalinks() ) { if ( ! $wp_rewrite->using_permalinks() ) {
$sitemap_url = add_query_arg( 'sitemap-stylesheet', 'sitemap', home_url( '/' ) ); $sitemap_url = home_url( '/?sitemap-stylesheet=sitemap' );
} }
/** /**
@ -98,7 +98,7 @@ class WP_Sitemaps_Renderer {
$sitemap_url = home_url( '/wp-sitemap-index.xsl' ); $sitemap_url = home_url( '/wp-sitemap-index.xsl' );
if ( ! $wp_rewrite->using_permalinks() ) { if ( ! $wp_rewrite->using_permalinks() ) {
$sitemap_url = add_query_arg( 'sitemap-stylesheet', 'index', home_url( '/' ) ); $sitemap_url = home_url( '/?sitemap-stylesheet=index' );
} }
/** /**