wpdatatables_settings_page

Contents

Description

This action is executed when the global settings page is open in the back-end.

Usage

add_action( 'wpdatatables_settings_page', 'add_element_on_settings_page' );

Parameters

  • No params.

Examples

// Callback function for the wpdatatables_settings_page action hook
function add_element_on_settings_page( ) { 
   // Your code
}

add_action( 'wpdatatables_settings_page', 'add_element_on_settings_page' );