Proper setup of multi doman site

I would suggest only combining topics that are somewhat related. For example, your natural remedies and farming might go together, depending on what kind of articles you write. Videography and outdoor Amazon stuff seem like they are totally separate topics. You might be able to set up a MultiSite and map the external domains. It’s … Read more

Which action hook to update custom field at network/site-info.php in multisite on update site info

After some more research I found a solution, turned out that I had to use admin_init.. function pg_save_custom_site_options(){ global $pagenow; if( ‘site-info.php’ == $pagenow && isset($_REQUEST[‘action’]) && ‘update-site’ == $_REQUEST[‘action’] ) { if ( isset( $_POST[‘blog’][‘custom_limit_amount’] ) ) { $new_field_value = intval( $_POST[‘blog’][‘custom_limit_amount’] ); if( is_int($new_field_value) ){ update_blog_option( $_POST[‘id’], ‘custom_limit_amount’, $new_field_value ); } } } … Read more