From 260276583c2085764b8d3b9af47c7c0ed179de60 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 17 Nov 2022 17:07:15 +0000 Subject: [PATCH] Docs: Update `wp_count_posts` and `wp_count_attachments` filter descriptions. This aims to match the wording generally used for other filters as per the documentation standards. Follow-up to [25554], [25578], [25579], [53456]. See #56792. Built from https://develop.svn.wordpress.org/trunk@54854 git-svn-id: http://core.svn.wordpress.org/trunk@54406 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 381ee526b4..70e05f9f73 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -3057,7 +3057,7 @@ function wp_count_posts( $type = 'post', $perm = '' ) { wp_cache_set( $cache_key, $counts, 'counts' ); /** - * Modifies returned post counts by status for the current post type. + * Filters the post counts by status for the current post type. * * @since 3.7.0 * @@ -3109,7 +3109,7 @@ function wp_count_attachments( $mime_type = '' ) { } /** - * Modifies returned attachment counts by mime type. + * Filters the attachment counts by mime type. * * @since 3.7.0 * diff --git a/wp-includes/version.php b/wp-includes/version.php index 59844b687d..3464cf0dd7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-54853'; +$wp_version = '6.2-alpha-54854'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.