From ed75e5b5e5199477e45ba87b41915eda08f45bbf Mon Sep 17 00:00:00 2001
From: Paul Biron <paul@sparrowhawkcomputing.com>
Date: Tue, 21 Jul 2020 12:51:50 -0600
Subject: [PATCH] Rename wp_register_sitemap() to
 wp_register_sitemap_provider().

---
 src/wp-includes/sitemaps.php              | 2 +-
 tests/phpunit/tests/sitemaps/sitemaps.php | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/wp-includes/sitemaps.php b/src/wp-includes/sitemaps.php
index 214eb3ac1a..f3bd6d1dfc 100644
--- a/src/wp-includes/sitemaps.php
+++ b/src/wp-includes/sitemaps.php
@@ -63,7 +63,7 @@ function wp_get_sitemap_providers() {
  * @param WP_Sitemaps_Provider $provider The `Sitemaps_Provider` instance implementing the sitemap.
  * @return bool Returns true if the sitemap was added. False on failure.
  */
-function wp_register_sitemap( $name, WP_Sitemaps_Provider $provider ) {
+function wp_register_sitemap_provider( $name, WP_Sitemaps_Provider $provider ) {
 	$sitemaps = wp_sitemaps_get_server();
 	return $sitemaps->registry->add_provider( $name, $provider );
 }
diff --git a/tests/phpunit/tests/sitemaps/sitemaps.php b/tests/phpunit/tests/sitemaps/sitemaps.php
index b1f4b0557d..a2f134053a 100644
--- a/tests/phpunit/tests/sitemaps/sitemaps.php
+++ b/tests/phpunit/tests/sitemaps/sitemaps.php
@@ -389,7 +389,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
 	 * Test functionality that adds a new sitemap provider to the registry.
 	 */
 	public function test_register_sitemap_provider() {
-		wp_register_sitemap( 'test_sitemap', self::$test_provider );
+		wp_register_sitemap_provider( 'test_sitemap', self::$test_provider );
 
 		$sitemaps = wp_get_sitemap_providers();
 
@@ -481,7 +481,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
 	 * @preserveGlobalState disabled
 	 */
 	public function test_empty_url_list_should_return_404() {
-		wp_register_sitemap( 'foo', new WP_Sitemaps_Empty_Test_Provider( 'foo' ) );
+		wp_register_sitemap_provider( 'foo', new WP_Sitemaps_Empty_Test_Provider( 'foo' ) );
 
 		$this->go_to( home_url( '/?sitemap=foo' ) );
 
-- 
2.26.2.windows.1

