wpdatatables_admin_before_addons

Contents

Description

The wpdatatables_admin_before_addons action fires before rendering the Addons page in the wpDataTables admin area. Developers can use this hook to add custom content, notices, or UI elements at the top of the Addons page.

Usage

add_action('wpdatatables_admin_before_addons', 'my_custom_addons_header');

Parameters

This action does not accept any parameters.

Examples

function my_custom_addons_header() {
    // Your code here
}
add_action('wpdatatables_admin_before_addons', 'my_custom_addons_header');