Install Network.
Source
function install_network() {
if ( ! defined( 'WP_INSTALLING_NETWORK' ) ) {
define( 'WP_INSTALLING_NETWORK', true );
}
dbDelta( wp_get_db_schema( 'global' ) );
}
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
CARVIEW |
Install Network.
function install_network() {
if ( ! defined( 'WP_INSTALLING_NETWORK' ) ) {
define( 'WP_INSTALLING_NETWORK', true );
}
dbDelta( wp_get_db_schema( 'global' ) );
}
Uses | Description |
---|---|
wp_get_db_schema()wp-admin/includes/schema.php | Retrieve the SQL for creating database tables. |
dbDelta()wp-admin/includes/upgrade.php | Modifies the database based on specified SQL statements. |
Version | Description |
---|---|
3.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.