| 1 |
<?php defined('ABSPATH') or die; |
| 2 |
/** |
| 3 |
* On save action we process all settings for each theme settings we have in db |
| 4 |
* |
| 5 |
* Think about inserting this function in after_theme_switch hook so the settings should be updated on theme switch |
| 6 |
* |
| 7 |
* @param $values |
| 8 |
*/ |
| 9 |
//@todo use this to process the save action, but for now just return |
| 10 |
|
| 11 |
return; |
| 12 |
|
| 13 |
//function save_customizer_plugin_settings( $values ){ |
| 14 |
// |
| 15 |
//// $options = get_option('customify_settings'); |
| 16 |
// // maybe proccess some setting on save |
| 17 |
// |
| 18 |
// // save this settings back |
| 19 |
//// update_option('customify_settings', $options); |
| 20 |
//} |