Multisite – Retrieve the same theme option from all sites of the network
may be its a late reply, but i hope this code will help you and anothers to solve this problem. <?php global $wpdb; $blogs = $wpdb->get_results(“SELECT blog_id FROM {$wpdb->blogs} WHERE site_id = ‘{$wpdb->siteid}’ AND spam = ‘0’ AND deleted = ‘0’ AND archived = ‘0’ AND blog_id != 1 “); $sites = array(); foreach ($blogs … Read more