wpdatatables_support_page

Contents

Description

This action is executed when the admin support page is open in the back-end.

Usage

add_action( 'wpdatatables_support_page', 'add_element_on_support_page' );

Parameters

  • No params.

Examples

// Callback function for the wpdatatables_support_page action hook
function add_element_on_support_page() { 
   // Your code
}

add_action( 'wpdatatables_support_page', 'add_element_on_support_page' );