apply_filters( ‘wp_sitemaps_enabled’, bool $is_enabled )

Filters whether XML Sitemaps are enabled or not.

Description

When XML Sitemaps are disabled via this filter, rewrite rules are still in place to ensure a 404 is returned.

See also

Parameters

$is_enabledbool
Whether XML Sitemaps are enabled or not.
Defaults to true for public sites.

Source

return (bool) apply_filters( 'wp_sitemaps_enabled', $is_enabled );

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.