install_network

The timeline below displays how wordpress function install_network has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.8

/**
 * Install Network.
 *
 * @since 3.0.0
 */
function install_network()
{
    if (!defined('WP_INSTALLING_NETWORK')) {
        define('WP_INSTALLING_NETWORK', true);
    }
    dbDelta(wp_get_db_schema('global'));
}

WordPress Version: 3.7

function install_network()
{
    if (!defined('WP_INSTALLING_NETWORK')) {
        define('WP_INSTALLING_NETWORK', true);
    }
    dbDelta(wp_get_db_schema('global'));
}