wpdatatables_after_save_settings

Contents

Description

This action is executed after wpDataTables saves the global settings data (after the user presses “Save settings” in the back-end settings page).

Usage

add_action( 'wpdatatables_after_save_settings', 'after_save_settings' );

Parameters

  • No params.

Examples

// Callback function for the wpdatatables_after_save_settings action hook
function after_save_settings( ) { 
   // Your code
}

add_action( 'wpdatatables_after_save_settings', 'after_save_settings' );