diff --git a/wp-includes/sitemaps/class-wp-sitemaps.php b/wp-includes/sitemaps/class-wp-sitemaps.php index a0fd5be624..d4bbe38c86 100644 --- a/wp-includes/sitemaps/class-wp-sitemaps.php +++ b/wp-includes/sitemaps/class-wp-sitemaps.php @@ -229,6 +229,8 @@ class WP_Sitemaps { * @return bool Bypass value. */ public function redirect_sitemapxml( $bypass, $query ) { + _deprecated_function( __FUNCTION__, '6.7.0' ); + // If a plugin has already utilized the pre_handle_404 function, return without action to avoid conflicts. if ( $bypass ) { return $bypass; diff --git a/wp-includes/version.php b/wp-includes/version.php index e895dbef1f..db5747ab5a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta2-59228'; +$wp_version = '6.7-beta2-59229'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.