Feature Request: Multisite
-
Hi,
we are running a multsite with ~50 sites and are going to use your plugin. While studying a bit the code, we would have a feature request.The plugin uses
get_option()
to store options, so settings can only be made per site. While for a single site doing those settings is not a big task, it becomes a bit more effort to repeat the same steps (in our case, the same settings apply to each site) 50 times.For our use case it would be great if (when network activated) you could add settings on network level. For me the ideal workflow then would be something like:
$options = get_option('option_key'); if (! $options && is_multisite) { $options = get_site_option('option_key'); }
If this would be the way, you are trying to read the current settings, you would first check for the “local/single site” settings. if we are in a network and no settings have been set locally, you would try to fetch the options from the network settings.
Thank you for the nice plugin and for considering this request,
David.
- The topic ‘Feature Request: Multisite’ is closed to new replies.