wppaste
WordPress

do_action( 'after_upgrade_to_multisite', int $network_id, string $domain, string $email, string $site_name, string $path, bool $subdomain_install )

Since
6.9.0
Fires after a network is created when converting a single site to multisite.

Compatibility

WordPress
since 6.9.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in 3 of the 5 tracked releases, added in 6.9.0.

Parameters

$network_idint
ID of network created.
$domainstring
The domain name for the network.
$emailstring
Email address for the network administrator.
$site_namestring
The name of the network.
$pathstring
The path to append to the network's domain name.
$subdomain_installbool
Whether the network is a subdomain installation or a subdirectory installation.

Where this hook fires · 1

  • wp-admin/includes/schema.php:1154populate_network()

Source code

<?php		 * @param string $domain            The domain name for the network.		 * @param string $email             Email address for the network administrator.		 * @param string $site_name         The name of the network.		 * @param string $path              The path to append to the network's domain name.		 * @param bool   $subdomain_install Whether the network is a subdomain installation or a subdirectory installation.		 */		do_action( 'after_upgrade_to_multisite', $network_id, $domain, $email, $site_name, $path, $subdomain_install ); 		if ( ! $subdomain_install ) {			return true;		} 		$vhost_ok = false;

Changelog

Introduced in 6.9.0. Unchanged from 6.9.7 through 7.1.0.

  1. 6.9.7
  2. 7.0.4
  3. 7.1.0

Signature, return type and hooks compared across 3 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.