wpdatatables_admin_before_dashboard

Contents

Description

The wpdatatables_admin_before_dashboard action fires before rendering the main dashboard page. It allows you to add custom notices, controls, or content at the top of the dashboard.

Usage

add_action('wpdatatables_admin_before_dashboard', 'my_custom_dashboard_notice');

Parameters

This action does not accept any parameters.

Examples


function my_custom_dashboard_notice() {
    // Your code here
}
add_action('wpdatatables_admin_before_dashboard', 'my_custom_dashboard_notice');