Complete the code to enable multisite in WordPress by adding the correct line to wp-config.php.
<?php // Enable multisite define('[1]', true);
To enable multisite in WordPress, you add define('WP_ALLOW_MULTISITE', true); to wp-config.php.
Complete the code to add the multisite network setup menu in WordPress admin after enabling multisite.
add_action('admin_menu', '[1]');
The multisite network setup menu is added with network_setup_menu hooked to admin_menu.
Fix the error in the multisite setup code by completing the constant that defines the network domain in wp-config.php.
define('[1]', 'example.com');
The correct constant to define the main site domain in multisite is DOMAIN_CURRENT_SITE.
Fill both blanks to complete the multisite network setup code in wp-config.php.
define('[1]', 1); define('[2]', '/');
The multisite setup requires SITE_ID_CURRENT_SITE set to 1 and PATH_CURRENT_SITE set to '/'.
Fill all three blanks to complete the multisite network setup code in wp-config.php.
define('[1]', 'example.com'); define('[2]', 1); define('[3]', '/');
These three constants define the domain, site ID, and path for the multisite network setup.