From 8db1a09d096536fc928e01d5dcc0ad001625d51d Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Mon, 2 Oct 2017 03:19:17 +0000 Subject: [PATCH] Docs: Clarify docs for hooked count/date updates See #41017. git-svn-id: https://develop.svn.wordpress.org/trunk@41666 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/ms-blogs.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/ms-blogs.php b/src/wp-includes/ms-blogs.php index 94c6bccf65..b2fffeab16 100644 --- a/src/wp-includes/ms-blogs.php +++ b/src/wp-includes/ms-blogs.php @@ -1230,7 +1230,8 @@ function _prime_network_caches( $network_ids ) { } /** - * Handler for updating the blog date when a post is published or an already published post is changed. + * Handler for updating the site's last updated date when a post is published or + * an already published post is changed. * * @since 3.3.0 * @@ -1254,7 +1255,8 @@ function _update_blog_date_on_post_publish( $new_status, $old_status, $post ) { } /** - * Handler for updating the blog date when a published post is deleted. + * Handler for updating the current site's last updated date when a published + * post is deleted. * * @since 3.4.0 * @@ -1276,7 +1278,7 @@ function _update_blog_date_on_post_delete( $post_id ) { } /** - * Handler for updating the blog posts count date when a post is deleted. + * Handler for updating the current site's posts count when a post is deleted. * * @since 4.0.0 * @@ -1293,7 +1295,7 @@ function _update_posts_count_on_delete( $post_id ) { } /** - * Handler for updating the blog posts count date when a post status changes. + * Handler for updating the current site's posts count when a post status changes. * * @since 4.0.0 * @since 4.9.0 Added the `$post` parameter.