WP_Sitemaps_Index::get_index_url(): string

In this article

Builds the URL for the sitemap index.

Return

string The sitemap index URL.

Source

public function get_index_url() {
	global $wp_rewrite;

	if ( ! $wp_rewrite->using_permalinks() ) {
		return home_url( '/?sitemap=index' );
	}

	return home_url( '/wp-sitemap.xml' );
}

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.