Make WordPress Core


Ignore:
Timestamp:
09/26/2023 12:40:36 PM (2 years ago)
Author:
swissspidy
Message:

Sitemaps: do not list users who only authored pages.

Author archives are only generated for users who created at least one post.
Prevent adding author archives to the XML sitemap for users who only authored pages
as the links would otherwise result in a 404.

Props zodiac1978, huzaifaalmesbah.
Fixes #57816.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php

    r52422 r56708  
    137137        );
    138138
    139         // We're not supporting sitemaps for author pages for attachments.
     139        // We're not supporting sitemaps for author pages for attachments and pages.
    140140        unset( $public_post_types['attachment'] );
     141        unset( $public_post_types['page'] );
    141142
    142143        /**
Note: See TracChangeset for help on using the changeset viewer.