Limited time discount Clean, Organized Data All Season Long
Up to 50%Off
Grab Now
Skip to main content

wpdatatables_admin_before_settings

Contents

Description

The wpdatatables_admin_before_settings action fires just before the main Settings page content in the admin area.

Usage

add_action('wpdatatables_admin_before_settings', 'my_custom_settings_notice');

Parameters

This action does not accept any parameters.

Examples


function my_custom_settings_notice() {
    // Your code here
}
add_action('wpdatatables_admin_before_settings', 'my_custom_settings_notice');