wpdatatables_after_save_row

Contents

Description

The wpdatatables_after_save_row action is triggered immediately after a new row has been inserted into the table. This hook allows you to perform additional after the row is saved.

Usage

add_action('wpdatatables_after_save_row', 'my_after_save_row_handler');

Parameters

None

Examples

function my_after_save_row_handler() {
    // Your code here
}
add_action('wpdatatables_after_save_row', 'my_after_save_row_handler');