wsf_settings_update

Description

The wsf_settings_update action is run when the Global Settings page is saved.

Usage

add_action( 'wsf_settings_update', 'my_hook_function', 10, 0 );

Example

// Callback function for the wsf_settings_update action hook
function my_hook_function() {
	
	// Your code here ...
}

// Add a callback function for the wsf_settings_update action hook
add_action( 'wsf_settings_update', 'my_hook_function', 10, 0 );

Source File

This hook can be found in: <plugin root>/admin/class-ws-form-admin.php