| 344 | <h3><?php _e('Multiple Sites (Network)') ?></h3> |
| 345 | <?php |
| 346 | // Just copying what appears on wp-admin/network.php |
| 347 | if ( is_multisite() || ( defined( 'WP_ALLOW_MULTISITE' ) && WP_ALLOW_MULTISITE ) ): |
| 348 | ?> |
| 349 | <p><?php printf( __('You should check <a href="%s">the Network section</a> to create a new Network, or find out the current status') , "network.php" ); ?></p> |
| 350 | <?php |
| 351 | else: |
| 352 | ?> |
| 353 | <p><?php _e( 'You must define the <code>WP_ALLOW_MULTISITE</code> constant as true in your wp-config.php file to allow creation of a Network.' ); ?></p> |
| 354 | <?php |
| 355 | endif; |
| 356 | ?> |
| 357 | |