wpdatatables_admin_before_constructor

Contents

Description

The wpdatatables_admin_before_constructor action fires before rendering the wpDataTables Constructor page. It allows developers to inject custom HTML or scripts before the main constructor content is displayed in the admin area.

Usage

add_action('wpdatatables_admin_before_constructor', 'my_custom_constructor_content');

Parameters

This action does not accept any parameters.

Examples


function my_custom_constructor_content() {
    // Your code here
}
add_action('wpdatatables_admin_before_constructor', 'my_custom_constructor_content');