Make WordPress Core


Ignore:
Timestamp:
06/17/2020 03:22:49 PM (5 years ago)
Author:
swissspidy
Message:

Sitemaps: Add XML sitemaps functionality to WordPress.

While web crawlers are able to discover pages from links within the site and from other sites, XML sitemaps supplement this approach by allowing crawlers to quickly and comprehensively identify all URLs included in the sitemap and learn other signals about those URLs using the associated metadata.

See https://make.wordpress.org/core/2020/06/10/merge-announcement-extensible-core-sitemaps/ for more details.

This feature exposes the sitemap index via /wp-sitemap.xml and exposes a variety of new filters and hooks for developers to modify the behavior. Users can disable sitemaps completely by turning off search engine visibility in WordPress admin.

This change also introduces a new esc_xml() function to escape strings for output in XML, as well as XML support to wp_kses_normalize_entities().

Props Adrian McShane, afragen, adamsilverstein, casiepa, flixos90, garrett-eclipse, joemcgill, kburgoine, kraftbj, milana_cap, pacifika, pbiron, pfefferle, Ruxandra Gradina, swissspidy, szepeviktor, tangrufus, tweetythierry.
Fixes #50117.
See #3670. See #19998.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/includes/bootstrap.php

    r48059 r48072  
    154154require __DIR__ . '/testcase-ajax.php';
    155155require __DIR__ . '/testcase-canonical.php';
     156require __DIR__ . '/testcase-xml.php';
    156157require __DIR__ . '/exceptions.php';
    157158require __DIR__ . '/utils.php';
     
    160161require __DIR__ . '/class-wp-rest-test-configurable-controller.php';
    161162require __DIR__ . '/class-wp-fake-block-type.php';
     163require __DIR__ . '/class-wp-sitemaps-test-provider.php';
     164require __DIR__ . '/class-wp-sitemaps-empty-test-provider.php';
    162165
    163166/**
Note: See TracChangeset for help on using the changeset viewer.