Title: [Plugin: WP Multi Network] Default Clone Network Options?
Last modified: August 19, 2016

---

# [Plugin: WP Multi Network] Default Clone Network Options?

 *  [Curtiss Grymala](https://wordpress.org/support/users/cgrymala/)
 * (@cgrymala)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-wp-multi-network-default-clone-network-options/)
 * I am doing some more playing around with the WP Multi Network plug-in, and I’ve
   found the sweet spot of options that I need to clone from our original network
   to any new networks. I’m curious if there is an easy way (without hacking the
   core of the plug-in) to set those to be turned on by default when I create a 
   new network, or if I have to individually check each of those options when I 
   create a network. Thanks in advance for any advice.

Viewing 1 replies (of 1 total)

 *  Thread Starter [Curtiss Grymala](https://wordpress.org/support/users/cgrymala/)
 * (@cgrymala)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-wp-multi-network-default-clone-network-options/#post-1814793)
 * Not necessarily ideal, but I think I figured it out.
 * The key is to hook into the admin_menu action, and add to the $options_to_copy
   array. An example looks like:
 *     ```
       <?php
       add_action( 'admin_menu', 'adjust_wpmn_options_to_copy' );
   
       function adjust_wpmn_options_to_copy() {
       	global $options_to_copy;
   
       	if( is_array( $options_to_copy ) ) {
       		$options_to_copy['active_sitewide_plugins'] = __( 'Plugins that are network activated' );
       	}
       }
       ?>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: WP Multi Network] Default Clone Network Options?’ is closed 
to new replies.

 * ![](https://ps.w.org/wp-multi-network/assets/icon-256x256.png?rev=1534001)
 * [WP Multi Network](https://wordpress.org/plugins/wp-multi-network/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-multi-network/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-multi-network/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-multi-network/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-multi-network/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-multi-network/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [Curtiss Grymala](https://wordpress.org/support/users/cgrymala/)
 * Last activity: [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-wp-multi-network-default-clone-network-options/#post-1814793)
 * Status: not resolved