1,'export_excel_format'=>'xlsx','enable_tooltip'=> 0, 'enable_autosave'=> 1, 'sync_periodicity' => 0 ,'enable_frontend'=>0); $config = (array)get_option('_wptm_global_config', $defaultConfig); $config = array_merge($defaultConfig, $config); return $config; } public function save($datas){ $config = get_option('_wptm_global_config'); foreach ($datas as $key => $value) { $config[$key]= $value; } $result = update_option('_wptm_global_config', $config); return $result; } }