Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent sitemap.xml from 404ing #91

Merged
merged 2 commits into from
Sep 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions class-es-wp-query-shoehorn.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,11 @@ private function reboot_query_vars( &$query ) {
$q['posts_per_page'] = $this->posts_per_page;
}

// Allow sitemap.xml redirect to wp-sitemap.xml page.
if ( 'sitemap.xml' === $q['pagename'] ) {
$q['pagename'] = sanitize_title_for_query( wp_basename( $q['pagename'] ) );
}

// Restore the author ID which is normally added during get_posts() in WP_Query.
// Required for handle_404() in WP class to not mark empty author archives as 404s.
if ( $query->is_author() && ! empty( $q['author_name'] ) ) {
Expand Down