You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( $custom_domain_normalized !== $network_domain ) {
706
-
WP_CLI::warning( 'Using a different domain for a subdirectory multisite install may require additional configuration (such as domain mapping) to work properly.' );
692
+
// For subdirectory installs, warn if the domain is different from the network's domain.
if ( $custom_domain_normalized !== $network_domain ) {
697
+
WP_CLI::warning( 'Using a different domain for a subdirectory multisite install may require additional configuration (such as domain mapping) to work properly.' );
698
+
}
707
699
}
700
+
} elseif ( is_subdomain_install() ) {
701
+
// No custom site URL, use the slug to generate the domain/path for subdomain install.
0 commit comments