'ids' ) ); } // Remove all database tables foreach ( $sites as $site_id ) { switch_to_blog( $site_id ); affcoups_delete_options(); restore_current_blog(); } } else { affcoups_delete_options(); } } /** * Delete options */ function affcoups_delete_options() { $options = array( 'affcoups_is_installed', 'affcoups_version', 'affcoups_settings', 'affcoups_log' ); foreach ( $options as $option ) { delete_option( $option ); } }