diff --git a/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php b/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php index a241f2468e..8e9f57dc6c 100644 --- a/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php +++ b/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php @@ -136,8 +136,9 @@ class WP_Sitemaps_Users extends WP_Sitemaps_Provider { ) ); - // We're not supporting sitemaps for author pages for attachments. + // We're not supporting sitemaps for author pages for attachments and pages. unset( $public_post_types['attachment'] ); + unset( $public_post_types['page'] ); /** * Filters the query arguments for authors with public posts. diff --git a/wp-includes/version.php b/wp-includes/version.php index e5d6316b17..d5da8862a2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56707'; +$wp_version = '6.4-alpha-56708'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.