From a71d7373ad6ce0a8f252717832f42aebc3e08854 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 17 Nov 2022 17:05:21 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@54854 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/post.php b/src/wp-includes/post.php index 381ee526b4..70e05f9f73 100644 --- a/src/wp-includes/post.php +++ b/src/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 *