From b0093748172a15a1c9ef5307ddc425130591cf52 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 3 Mar 2022 15:58:03 +0000 Subject: [PATCH] Networks and Sites: Suggest `wp_initialize_site` as an alternative for the deprecated `wpmu_new_blog` action. The previously suggested alternative, `wp_insert_site`, does not get passed enough arguments and runs before the new site initialization routine is actually executed. Follow-up to [43654]. Props asaquzzaman, henry.wright, MadtownLems. Fixes #49612. Built from https://develop.svn.wordpress.org/trunk@52816 git-svn-id: http://core.svn.wordpress.org/trunk@52405 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-site.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/ms-site.php b/wp-includes/ms-site.php index 6daee09d8a..4ce7fc4de3 100644 --- a/wp-includes/ms-site.php +++ b/wp-includes/ms-site.php @@ -136,7 +136,7 @@ function wp_insert_site( array $data ) { 'wpmu_new_blog', array( $new_site->id, $user_id, $new_site->domain, $new_site->path, $new_site->network_id, $meta ), '5.1.0', - 'wp_insert_site' + 'wp_initialize_site' ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 2d73727b63..9a4ae7cbde 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52815'; +$wp_version = '6.0-alpha-52816'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.