wpdatatables_admin_before_edit

Contents

Description

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

Usage

add_action( 'wpdatatables_admin_before_edit', 'admin_before_edit' );

Parameters

  • No params

Examples

// Callback function for the wpdatatables_admin_before_edit action hook
function before_render_table() { 
     // Your code
}

add_action( 'wpdatatables_admin_before_edit', 'admin_before_edit');