PluginProbe
Customify / 1.2.3
Customify v1.2.3
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
customify / callbacks / save_settings.php

save_settings.php in Customify 1.2.3, at callbacks/save_settings.php

20 lines 578 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 //}