From 29cfbec0ba2aa059e1c028be172223a2ad97d324 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 21 Jun 2022 13:48:12 +0000 Subject: [PATCH] Docs: Add missing `@since` mention in `get_posts_query_args()`. Follow-up to [53548]. See #55633. Built from https://develop.svn.wordpress.org/trunk@53551 git-svn-id: http://core.svn.wordpress.org/trunk@53140 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php | 2 ++ wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php b/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php index b9f2fd3185..a545478771 100644 --- a/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php +++ b/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. diff --git a/wp-includes/version.php b/wp-includes/version.php index aef146e42d..7750b83740 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53550'; +$wp_version = '6.1-alpha-53551'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.