X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/11be15bd505d66a91e2c80062190b13e315a04a9..d3947bc013df7edd54b46deed8230d2eeafc5ecb:/wp-includes/ms-blogs.php diff --git a/wp-includes/ms-blogs.php b/wp-includes/ms-blogs.php index 95ddedb7..9108d59e 100644 --- a/wp-includes/ms-blogs.php +++ b/wp-includes/ms-blogs.php @@ -9,15 +9,23 @@ */ /** - * Update the last_updated field for the current blog. + * Update the last_updated field for the current site. * * @since MU + * + * @global wpdb $wpdb WordPress database abstraction object. */ function wpmu_update_blogs_date() { global $wpdb; update_blog_details( $wpdb->blogid, array('last_updated' => current_time('mysql', true)) ); - + /** + * Fires after the blog details are updated. + * + * @since MU + * + * @param int $blog_id Site ID. + */ do_action( 'wpmu_blog_updated', $wpdb->blogid ); } @@ -27,11 +35,19 @@ function wpmu_update_blogs_date() { * @since MU * * @param int $blog_id Blog ID - * @return string + * @return string Full URL of the blog if found. Empty string if not. */ function get_blogaddress_by_id( $blog_id ) { - $bloginfo = get_blog_details( (int) $blog_id, false ); // only get bare details! - return esc_url( 'http://' . $bloginfo->domain . $bloginfo->path ); + $bloginfo = get_blog_details( (int) $blog_id ); + + if ( empty( $bloginfo ) ) { + return ''; + } + + $scheme = parse_url( $bloginfo->home, PHP_URL_SCHEME ); + $scheme = empty( $scheme ) ? 'http' : $scheme; + + return esc_url( $scheme . '://' . $bloginfo->domain . $bloginfo->path ); } /** @@ -55,43 +71,20 @@ function get_blogaddress_by_name( $blogname ) { return esc_url( $url . '/' ); } -/** - * Get a full blog URL, given a domain and a path. - * - * @since MU - * - * @param string $domain - * @param string $path - * @return string - */ -function get_blogaddress_by_domain( $domain, $path ) { - if ( is_subdomain_install() ) { - $url = "http://" . $domain.$path; - } else { - if ( $domain != $_SERVER['HTTP_HOST'] ) { - $blogname = substr( $domain, 0, strpos( $domain, '.' ) ); - $url = 'http://' . substr( $domain, strpos( $domain, '.' ) + 1 ) . $path; - // we're not installing the main blog - if ( $blogname != 'www.' ) - $url .= $blogname . '/'; - } else { // main blog - $url = 'http://' . $domain . $path; - } - } - return esc_url( $url ); -} - /** * Given a blog's (subdomain or directory) slug, retrieve its id. * * @since MU * + * @global wpdb $wpdb WordPress database abstraction object. + * * @param string $slug * @return int A blog id */ function get_id_from_blogname( $slug ) { - global $wpdb, $current_site; + global $wpdb; + $current_site = get_current_site(); $slug = trim( $slug, '/' ); $blog_id = wp_cache_get( 'get_id_from_blogname_' . $slug, 'blog-details' ); @@ -116,9 +109,13 @@ function get_id_from_blogname( $slug ) { * * @since MU * - * @param int|string|array $fields A blog ID, a blog slug, or an array of fields to query against. Optional. If not specified the current blog ID is used. - * @param bool $get_all Whether to retrieve all details or only the details in the blogs table. Default is true. - * @return object Blog details. + * @global wpdb $wpdb WordPress database abstraction object. + * + * @param int|string|array $fields Optional. A blog ID, a blog slug, or an array of fields to query against. + * If not specified the current blog ID is used. + * @param bool $get_all Whether to retrieve all details or only the details in the blogs table. + * Default is true. + * @return WP_Site|false Blog details on success. False on failure. */ function get_blog_details( $fields = null, $get_all = true ) { global $wpdb; @@ -213,7 +210,7 @@ function get_blog_details( $fields = null, $get_all = true ) { } if ( empty($details) ) { - $details = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->blogs WHERE blog_id = %d /* get_blog_details */", $blog_id ) ); + $details = WP_Site::get_instance( $blog_id ); if ( ! $details ) { // Set the full cache. wp_cache_set( $blog_id, -1, 'blog-details' ); @@ -221,17 +218,29 @@ function get_blog_details( $fields = null, $get_all = true ) { } } + if ( ! $details instanceof WP_Site ) { + $details = new WP_Site( $details ); + } + if ( ! $get_all ) { wp_cache_set( $blog_id . $all, $details, 'blog-details' ); return $details; } switch_to_blog( $blog_id ); - $details->blogname = get_option( 'blogname' ); - $details->siteurl = get_option( 'siteurl' ); - $details->post_count = get_option( 'post_count' ); + $details->blogname = get_option( 'blogname' ); + $details->siteurl = get_option( 'siteurl' ); + $details->post_count = get_option( 'post_count' ); + $details->home = get_option( 'home' ); restore_current_blog(); + /** + * Filter a blog's details. + * + * @since MU + * + * @param object $details The blog details. + */ $details = apply_filters( 'blog_details', $details ); wp_cache_set( $blog_id . $all, $details, 'blog-details' ); @@ -247,10 +256,14 @@ function get_blog_details( $fields = null, $get_all = true ) { * * @since MU * - * @param int $blog_id Blog ID + * @param int $blog_id Optional. Blog ID. Defaults to current blog. */ -function refresh_blog_details( $blog_id ) { +function refresh_blog_details( $blog_id = 0 ) { $blog_id = (int) $blog_id; + if ( ! $blog_id ) { + $blog_id = get_current_blog_id(); + } + $details = get_blog_details( $blog_id, false ); if ( ! $details ) { // Make sure clean_blog_cache() gets the blog ID @@ -265,6 +278,13 @@ function refresh_blog_details( $blog_id ) { clean_blog_cache( $details ); + /** + * Fires after the blog details cache is cleared. + * + * @since 3.4.0 + * + * @param int $blog_id Blog ID. + */ do_action( 'refresh_blog_details', $blog_id ); } @@ -273,7 +293,9 @@ function refresh_blog_details( $blog_id ) { * * @since MU * - * @param int $blog_id Blog ID + * @global wpdb $wpdb WordPress database abstraction object. + * + * @param int $blog_id Blog ID * @param array $details Array of details keyed by blogs table field names. * @return bool True if update succeeds, false otherwise. */ @@ -297,8 +319,13 @@ function update_blog_details( $blog_id, $details = array() ) { $update_details = array(); $fields = array( 'site_id', 'domain', 'path', 'registered', 'last_updated', 'public', 'archived', 'mature', 'spam', 'deleted', 'lang_id'); - foreach ( array_intersect( array_keys( $details ), $fields ) as $field ) - $update_details[$field] = $details[$field]; + foreach ( array_intersect( array_keys( $details ), $fields ) as $field ) { + if ( 'path' === $field ) { + $details[ $field ] = trailingslashit( '/' . trim( $details[ $field ], '/' ) ); + } + + $update_details[ $field ] = $details[ $field ]; + } $result = $wpdb->update( $wpdb->blogs, $update_details, array('blog_id' => $blog_id) ); @@ -306,40 +333,100 @@ function update_blog_details( $blog_id, $details = array() ) { return false; // If spam status changed, issue actions. - if ( $details[ 'spam' ] != $current_details[ 'spam' ] ) { - if ( $details[ 'spam' ] == 1 ) + if ( $details['spam'] != $current_details['spam'] ) { + if ( $details['spam'] == 1 ) { + /** + * Fires when the blog status is changed to 'spam'. + * + * @since MU + * + * @param int $blog_id Blog ID. + */ do_action( 'make_spam_blog', $blog_id ); - else + } else { + /** + * Fires when the blog status is changed to 'ham'. + * + * @since MU + * + * @param int $blog_id Blog ID. + */ do_action( 'make_ham_blog', $blog_id ); + } } // If mature status changed, issue actions. - if ( $details[ 'mature' ] != $current_details[ 'mature' ] ) { - if ( $details[ 'mature' ] == 1 ) + if ( $details['mature'] != $current_details['mature'] ) { + if ( $details['mature'] == 1 ) { + /** + * Fires when the blog status is changed to 'mature'. + * + * @since 3.1.0 + * + * @param int $blog_id Blog ID. + */ do_action( 'mature_blog', $blog_id ); - else + } else { + /** + * Fires when the blog status is changed to 'unmature'. + * + * @since 3.1.0 + * + * @param int $blog_id Blog ID. + */ do_action( 'unmature_blog', $blog_id ); + } } // If archived status changed, issue actions. - if ( $details[ 'archived' ] != $current_details[ 'archived' ] ) { - if ( $details[ 'archived' ] == 1 ) + if ( $details['archived'] != $current_details['archived'] ) { + if ( $details['archived'] == 1 ) { + /** + * Fires when the blog status is changed to 'archived'. + * + * @since MU + * + * @param int $blog_id Blog ID. + */ do_action( 'archive_blog', $blog_id ); - else + } else { + /** + * Fires when the blog status is changed to 'unarchived'. + * + * @since MU + * + * @param int $blog_id Blog ID. + */ do_action( 'unarchive_blog', $blog_id ); + } } // If deleted status changed, issue actions. - if ( $details[ 'deleted' ] != $current_details[ 'deleted' ] ) { - if ( $details[ 'deleted' ] == 1 ) + if ( $details['deleted'] != $current_details['deleted'] ) { + if ( $details['deleted'] == 1 ) { + /** + * Fires when the blog status is changed to 'deleted'. + * + * @since 3.5.0 + * + * @param int $blog_id Blog ID. + */ do_action( 'make_delete_blog', $blog_id ); - else + } else { + /** + * Fires when the blog status is changed to 'undeleted'. + * + * @since 3.5.0 + * + * @param int $blog_id Blog ID. + */ do_action( 'make_undelete_blog', $blog_id ); + } } - if ( isset( $details[ 'public' ] ) ) { + if ( isset( $details['public'] ) ) { switch_to_blog( $blog_id ); - update_option( 'blog_public', $details[ 'public' ] ); + update_option( 'blog_public', $details['public'] ); restore_current_blog(); } @@ -353,12 +440,13 @@ function update_blog_details( $blog_id, $details = array() ) { * * @since 3.5.0 * - * @param stdClass $blog The blog details as returned from get_blog_details() + * @param WP_Site $blog The blog details as returned from get_blog_details() */ function clean_blog_cache( $blog ) { $blog_id = $blog->blog_id; $domain_path_key = md5( $blog->domain . $blog->path ); + wp_cache_delete( $blog_id, 'sites' ); wp_cache_delete( $blog_id , 'blog-details' ); wp_cache_delete( $blog_id . 'short' , 'blog-details' ); wp_cache_delete( $domain_path_key, 'blog-lookup' ); @@ -380,9 +468,9 @@ function clean_blog_cache( $blog ) { * * @since MU * - * @param int $id A blog ID. Can be null to refer to the current blog. - * @param string $option Name of option to retrieve. Expected to not be SQL-escaped. - * @param mixed $default Optional. Default value to return if the option does not exist. + * @param int $id A blog ID. Can be null to refer to the current blog. + * @param string $option Name of option to retrieve. Expected to not be SQL-escaped. + * @param mixed $default Optional. Default value to return if the option does not exist. * @return mixed Value set for the option. */ function get_blog_option( $id, $option, $default = false ) { @@ -398,7 +486,17 @@ function get_blog_option( $id, $option, $default = false ) { $value = get_option( $option, $default ); restore_current_blog(); - return apply_filters( 'blog_option_' . $option, $value, $id ); + /** + * Filter a blog option value. + * + * The dynamic portion of the hook name, `$option`, refers to the blog option name. + * + * @since 3.5.0 + * + * @param string $value The option value. + * @param int $id Blog ID. + */ + return apply_filters( "blog_option_{$option}", $value, $id ); } /** @@ -415,9 +513,9 @@ function get_blog_option( $id, $option, $default = false ) { * * @since MU * - * @param int $id A blog ID. Can be null to refer to the current blog. + * @param int $id A blog ID. Can be null to refer to the current blog. * @param string $option Name of option to add. Expected to not be SQL-escaped. - * @param mixed $value Optional. Option value, can be anything. Expected to not be SQL-escaped. + * @param mixed $value Optional. Option value, can be anything. Expected to not be SQL-escaped. * @return bool False if option was not added and true if option was added. */ function add_blog_option( $id, $option, $value ) { @@ -441,7 +539,7 @@ function add_blog_option( $id, $option, $value ) { * * @since MU * - * @param int $id A blog ID. Can be null to refer to the current blog. + * @param int $id A blog ID. Can be null to refer to the current blog. * @param string $option Name of option to remove. Expected to not be SQL-escaped. * @return bool True, if option is successfully deleted. False on failure. */ @@ -466,9 +564,10 @@ function delete_blog_option( $id, $option ) { * * @since MU * - * @param int $id The blog id - * @param string $option The option key - * @param mixed $value The option value + * @param int $id The blog id. + * @param string $option The option key. + * @param mixed $value The option value. + * @param mixed $deprecated Not used. * @return bool True on success, false on failure. */ function update_blog_option( $id, $option, $value, $deprecated = null ) { @@ -502,29 +601,46 @@ function update_blog_option( $id, $option, $value, $deprecated = null ) { * @see restore_current_blog() * @since MU * - * @param int $new_blog The id of the blog you want to switch to. Default: current blog + * @global wpdb $wpdb + * @global int $blog_id + * @global array $_wp_switched_stack + * @global bool $switched + * @global string $table_prefix + * @global WP_Object_Cache $wp_object_cache + * + * @param int $new_blog The id of the blog you want to switch to. Default: current blog * @param bool $deprecated Deprecated argument - * @return bool True on success, false if the validation failed + * @return true Always returns True. */ function switch_to_blog( $new_blog, $deprecated = null ) { - global $wpdb, $wp_roles; + global $wpdb; if ( empty( $new_blog ) ) $new_blog = $GLOBALS['blog_id']; $GLOBALS['_wp_switched_stack'][] = $GLOBALS['blog_id']; - /* If we're switching to the same blog id that we're on, - * set the right vars, do the associated actions, but skip - * the extra unnecessary work */ + /* + * If we're switching to the same blog id that we're on, + * set the right vars, do the associated actions, but skip + * the extra unnecessary work + */ if ( $new_blog == $GLOBALS['blog_id'] ) { + /** + * Fires when the blog is switched. + * + * @since MU + * + * @param int $new_blog New blog ID. + * @param int $new_blog Blog ID. + */ do_action( 'switch_blog', $new_blog, $new_blog ); $GLOBALS['switched'] = true; return true; } $wpdb->set_blog_id( $new_blog ); - $GLOBALS['table_prefix'] = $wpdb->prefix; + $GLOBALS['table_prefix'] = $wpdb->get_blog_prefix(); $prev_blog_id = $GLOBALS['blog_id']; $GLOBALS['blog_id'] = $new_blog; @@ -541,20 +657,22 @@ function switch_to_blog( $new_blog, $deprecated = null ) { wp_cache_init(); if ( function_exists( 'wp_cache_add_global_groups' ) ) { - if ( is_array( $global_groups ) ) + if ( is_array( $global_groups ) ) { wp_cache_add_global_groups( $global_groups ); - else - wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'site-transient', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss', 'global-posts', ' blog-id-cache' ) ); + } else { + wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites' ) ); + } wp_cache_add_non_persistent_groups( array( 'comment', 'counts', 'plugins' ) ); } } if ( did_action( 'init' ) ) { - $wp_roles->reinit(); + wp_roles()->reinit(); $current_user = wp_get_current_user(); $current_user->for_blog( $new_blog ); } + /** This filter is documented in wp-includes/ms-blogs.php */ do_action( 'switch_blog', $new_blog, $prev_blog_id ); $GLOBALS['switched'] = true; @@ -567,10 +685,17 @@ function switch_to_blog( $new_blog, $deprecated = null ) { * @see switch_to_blog() * @since MU * + * @global wpdb $wpdb + * @global array $_wp_switched_stack + * @global int $blog_id + * @global bool $switched + * @global string $table_prefix + * @global WP_Object_Cache $wp_object_cache + * * @return bool True on success, false if we're already on the current blog */ function restore_current_blog() { - global $wpdb, $wp_roles; + global $wpdb; if ( empty( $GLOBALS['_wp_switched_stack'] ) ) return false; @@ -578,6 +703,7 @@ function restore_current_blog() { $blog = array_pop( $GLOBALS['_wp_switched_stack'] ); if ( $GLOBALS['blog_id'] == $blog ) { + /** This filter is documented in wp-includes/ms-blogs.php */ do_action( 'switch_blog', $blog, $blog ); // If we still have items in the switched stack, consider ourselves still 'switched' $GLOBALS['switched'] = ! empty( $GLOBALS['_wp_switched_stack'] ); @@ -587,7 +713,7 @@ function restore_current_blog() { $wpdb->set_blog_id( $blog ); $prev_blog_id = $GLOBALS['blog_id']; $GLOBALS['blog_id'] = $blog; - $GLOBALS['table_prefix'] = $wpdb->prefix; + $GLOBALS['table_prefix'] = $wpdb->get_blog_prefix(); if ( function_exists( 'wp_cache_switch_to_blog' ) ) { wp_cache_switch_to_blog( $blog ); @@ -602,20 +728,22 @@ function restore_current_blog() { wp_cache_init(); if ( function_exists( 'wp_cache_add_global_groups' ) ) { - if ( is_array( $global_groups ) ) + if ( is_array( $global_groups ) ) { wp_cache_add_global_groups( $global_groups ); - else - wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'site-transient', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss', 'global-posts', ' blog-id-cache' ) ); + } else { + wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites' ) ); + } wp_cache_add_non_persistent_groups( array( 'comment', 'counts', 'plugins' ) ); } } if ( did_action( 'init' ) ) { - $wp_roles->reinit(); + wp_roles()->reinit(); $current_user = wp_get_current_user(); $current_user->for_blog( $blog ); } + /** This filter is documented in wp-includes/ms-blogs.php */ do_action( 'switch_blog', $blog, $prev_blog_id ); // If we still have items in the switched stack, consider ourselves still 'switched' @@ -629,6 +757,8 @@ function restore_current_blog() { * * @since 3.5.0 * + * @global array $_wp_switched_stack + * * @return bool True if switched, false otherwise. */ function ms_is_switched() { @@ -652,7 +782,7 @@ function is_archived( $id ) { * * @since MU * - * @param int $id The blog id + * @param int $id The blog id * @param string $archived The new status * @return string $archived */ @@ -666,10 +796,13 @@ function update_archived( $id, $archived ) { * * @since MU * - * @param int $blog_id BLog ID - * @param string $pref A field name - * @param string $value Value for $pref - * @return string $value + * @global wpdb $wpdb WordPress database abstraction object. + * + * @param int $blog_id BLog ID + * @param string $pref A field name + * @param string $value Value for $pref + * @param null $deprecated + * @return string|false $value */ function update_blog_status( $blog_id, $pref, $value, $deprecated = null ) { global $wpdb; @@ -687,16 +820,49 @@ function update_blog_status( $blog_id, $pref, $value, $deprecated = null ) { refresh_blog_details( $blog_id ); - if ( 'spam' == $pref ) - ( $value == 1 ) ? do_action( 'make_spam_blog', $blog_id ) : do_action( 'make_ham_blog', $blog_id ); - elseif ( 'mature' == $pref ) - ( $value == 1 ) ? do_action( 'mature_blog', $blog_id ) : do_action( 'unmature_blog', $blog_id ); - elseif ( 'archived' == $pref ) - ( $value == 1 ) ? do_action( 'archive_blog', $blog_id ) : do_action( 'unarchive_blog', $blog_id ); - elseif ( 'deleted' == $pref ) - ( $value == 1 ) ? do_action( 'make_delete_blog', $blog_id ) : do_action( 'make_undelete_blog', $blog_id ); - elseif ( 'public' == $pref ) + if ( 'spam' == $pref ) { + if ( $value == 1 ) { + /** This filter is documented in wp-includes/ms-blogs.php */ + do_action( 'make_spam_blog', $blog_id ); + } else { + /** This filter is documented in wp-includes/ms-blogs.php */ + do_action( 'make_ham_blog', $blog_id ); + } + } elseif ( 'mature' == $pref ) { + if ( $value == 1 ) { + /** This filter is documented in wp-includes/ms-blogs.php */ + do_action( 'mature_blog', $blog_id ); + } else { + /** This filter is documented in wp-includes/ms-blogs.php */ + do_action( 'unmature_blog', $blog_id ); + } + } elseif ( 'archived' == $pref ) { + if ( $value == 1 ) { + /** This filter is documented in wp-includes/ms-blogs.php */ + do_action( 'archive_blog', $blog_id ); + } else { + /** This filter is documented in wp-includes/ms-blogs.php */ + do_action( 'unarchive_blog', $blog_id ); + } + } elseif ( 'deleted' == $pref ) { + if ( $value == 1 ) { + /** This filter is documented in wp-includes/ms-blogs.php */ + do_action( 'make_delete_blog', $blog_id ); + } else { + /** This filter is documented in wp-includes/ms-blogs.php */ + do_action( 'make_undelete_blog', $blog_id ); + } + } elseif ( 'public' == $pref ) { + /** + * Fires after the current blog's 'public' setting is updated. + * + * @since MU + * + * @param int $blog_id Blog ID. + * @param string $value The value of blog status. + */ do_action( 'update_blog_public', $blog_id, $value ); // Moved here from update_blog_public(). + } return $value; } @@ -706,9 +872,11 @@ function update_blog_status( $blog_id, $pref, $value, $deprecated = null ) { * * @since MU * - * @param int $id The blog id + * @global wpdb $wpdb WordPress database abstraction object. + * + * @param int $id The blog id * @param string $pref A field name - * @return bool $value + * @return bool|string|null $value */ function get_blog_status( $id, $pref ) { global $wpdb; @@ -725,9 +893,11 @@ function get_blog_status( $id, $pref ) { * * @since MU * + * @global wpdb $wpdb WordPress database abstraction object. + * * @param mixed $deprecated Not used - * @param int $start The offset - * @param int $quantity The maximum number of blogs to retrieve. Default is 40. + * @param int $start The offset + * @param int $quantity The maximum number of blogs to retrieve. Default is 40. * @return array The list of blogs */ function get_last_updated( $deprecated = '', $start = 0, $quantity = 40 ) { @@ -746,15 +916,17 @@ function get_last_updated( $deprecated = '', $start = 0, $quantity = 40 ) { * * @param string $new_status The new post status * @param string $old_status The old post status - * @param object $post Post object + * @param object $post Post object */ function _update_blog_date_on_post_publish( $new_status, $old_status, $post ) { $post_type_obj = get_post_type_object( $post->post_type ); - if ( ! $post_type_obj->public ) + if ( ! $post_type_obj || ! $post_type_obj->public ) { return; + } - if ( 'publish' != $new_status && 'publish' != $old_status ) + if ( 'publish' != $new_status && 'publish' != $old_status ) { return; + } // Post was freshly published, published post was saved, or published post was unpublished. @@ -772,12 +944,50 @@ function _update_blog_date_on_post_delete( $post_id ) { $post = get_post( $post_id ); $post_type_obj = get_post_type_object( $post->post_type ); - if ( ! $post_type_obj->public ) + if ( ! $post_type_obj || ! $post_type_obj->public ) { return; + } - if ( 'publish' != $post->post_status ) + if ( 'publish' != $post->post_status ) { return; + } wpmu_update_blogs_date(); } +/** + * Handler for updating the blog posts count date when a post is deleted. + * + * @since 4.0.0 + * + * @param int $post_id Post ID. + */ +function _update_posts_count_on_delete( $post_id ) { + $post = get_post( $post_id ); + + if ( ! $post || 'publish' !== $post->post_status ) { + return; + } + + update_posts_count(); +} + +/** + * Handler for updating the blog posts count date when a post status changes. + * + * @since 4.0.0 + * + * @param string $new_status The status the post is changing to. + * @param string $old_status The status the post is changing from. + */ +function _update_posts_count_on_transition_post_status( $new_status, $old_status ) { + if ( $new_status === $old_status ) { + return; + } + + if ( 'publish' !== $new_status && 'publish' !== $old_status ) { + return; + } + + update_posts_count(); +}