Bulk theme settings in wordpress multisite
If you configure your Theme settings code properly, the Theme will work fine without having any user-defined settings. The key is to define a defaults array, and anytime you need to output a Theme option, run an array_merge() on the defaults array, and the theme’s options DB entry. Something like this: <?php global $mytheme_options; $mytheme_options … Read more