# customify/2.3.0/callbacks/save_settings.php

Customify, version 2.3.0. 20 lines.

- Page: https://pluginprobe.com/plugins/customify/2.3.0/code/callbacks/save_settings.php
- Raw: https://pluginprobe.com/plugins/customify/2.3.0/raw/callbacks/save_settings.php
- Modified: 2015-02-16T08:16:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/customify/2.3.0/code/callbacks/save_settings.php#L10-L20`.

```php
<?php defined('ABSPATH') or die;
/**
 * On save action we process all settings for each theme settings we have in db
 *
 * Think about inserting this function in after_theme_switch hook so the settings should be updated on theme switch
 *
 * @param $values
 */
//@todo use this to process the save action, but for now just return

return;

//function save_customizer_plugin_settings( $values ){
//
////	$options = get_option('customify_settings');
//	// maybe proccess some setting on save
//
//	// save this settings back
////	update_option('customify_settings', $options);
//}
```
