From 79492c62045c035fc983435919173f09a1426bfd Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 6 Nov 2022 14:46:14 +0000 Subject: [PATCH] Docs: Correct DocBlock formatting for `wp_sitemaps_enabled` filter. Follow-up to [48072], [48094], [48523]. See #56792. git-svn-id: https://develop.svn.wordpress.org/trunk@54755 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/sitemaps/class-wp-sitemaps.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/sitemaps/class-wp-sitemaps.php b/src/wp-includes/sitemaps/class-wp-sitemaps.php index cd8d1e4dbc..85d3adddb4 100644 --- a/src/wp-includes/sitemaps/class-wp-sitemaps.php +++ b/src/wp-includes/sitemaps/class-wp-sitemaps.php @@ -99,8 +99,8 @@ class WP_Sitemaps { * * @since 5.5.0 * - * @param bool $is_enabled Whether XML Sitemaps are enabled or not. Defaults - * to true for public sites. + * @param bool $is_enabled Whether XML Sitemaps are enabled or not. + * Defaults to true for public sites. */ return (bool) apply_filters( 'wp_sitemaps_enabled', $is_enabled ); }