Title: Multisite settings
Last modified: April 6, 2023

---

# Multisite settings

 *  Resolved [janiu](https://wordpress.org/support/users/janiu/)
 * (@janiu)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/multisite-settings-11/)
 * We have a multisite setup with hundreds of blogs. Is there a way to define settings
   for the whole network? Or have the network blogs follow settings from the main
   blog? And also to restrict settings for Super Admins and hide them from blog 
   admins.

Viewing 1 replies (of 1 total)

 *  Plugin Author [Sybre Waaijer](https://wordpress.org/support/users/cybr/)
 * (@cybr)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/multisite-settings-11/#post-16637192)
 * Hello!
 * Yes, the second suggestion of yours is easily implemented.
 * First, I recommend defining this in wp-config or a mu-plugin:
 *     ```
       define( 'THE_SEO_FRAMEWORK_SETTINGS_CAP', 'manage_network' );
       ```
   
 * Then, you’d want to filter `the_seo_framework_default_site_options` and merge`
   get_blog_option( 1, THE_SEO_FRAMEWORK_SITE_OPTIONS )` with it:
 *     ```
       add_filter( 'the_seo_framework_default_site_options', function( $defaults ) {
       	return array_merge( 
       		$defaults, 
       		get_blog_option( 1, THE_SEO_FRAMEWORK_SITE_OPTIONS ) ?: []
       	);
       } );
       ```
   
 * This way, the primary site’s options are written to all subsites’ defaults. If
   a subsite installed The SEO Framework before you implemented the filter, you 
   could merge the settings by hitting “Reset Settings” on the SEO Settings page
   on the subsite.
    -  This reply was modified 3 years, 2 months ago by [Sybre Waaijer](https://wordpress.org/support/users/cybr/).
      Reason: proper code formatting

Viewing 1 replies (of 1 total)

The topic ‘Multisite settings’ is closed to new replies.

 * ![](https://ps.w.org/autodescription/assets/icon.svg?rev=3000376)
 * [The SEO Framework – Fast, Automated, Effortless.](https://wordpress.org/plugins/autodescription/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/autodescription/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/autodescription/)
 * [Active Topics](https://wordpress.org/support/plugin/autodescription/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/autodescription/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/autodescription/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Sybre Waaijer](https://wordpress.org/support/users/cybr/)
 * Last activity: [3 years, 2 months ago](https://wordpress.org/support/topic/multisite-settings-11/#post-16637192)
 * Status: resolved