wpdatatables_admin_before_edit_simple_table

Contents

Description

You call this action before the table configuration section in the admin part(only simple tables). You can use this action to include a custom block and settings for the table.

Usage

add_action( 'wpdatatables_admin_before_edit_simple_table', 'admin_before_edit_simple_table' );

Parameters

  • No params

Examples

// Callback function for the wpdatatables_admin_before_edit_simple_table action hook
function admin_before_edit_simple_table() { 
     // Your code
}

add_action( 'wpdatatables_admin_before_edit_simple_table', 'admin_before_edit_simple_table');