From af8255775bf823c72d3be766dd8582a6edc47564 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Tue, 21 Jun 2022 13:46:29 +0000 Subject: [PATCH] Docs: Add missing `@since` mention in `get_posts_query_args()`. Follow-up to [53548]. See #55633. git-svn-id: https://develop.svn.wordpress.org/trunk@53551 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php b/src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php index b9f2fd3185..a545478771 100644 --- a/src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php +++ b/src/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php @@ -193,6 +193,7 @@ class WP_Sitemaps_Posts extends WP_Sitemaps_Provider { * Returns the query args for retrieving posts to list in the sitemap. * * @since 5.5.0 + * @since 6.1.0 Added `ignore_sticky_posts` default parameter. * * @param string $post_type Post type name. * @return array Array of WP_Query arguments. @@ -204,6 +205,7 @@ class WP_Sitemaps_Posts extends WP_Sitemaps_Provider { * @see WP_Query for a full list of arguments. * * @since 5.5.0 + * @since 6.1.0 Added `ignore_sticky_posts` default parameter. * * @param array $args Array of WP_Query arguments. * @param string $post_type Post type name.