wpdatatables_getting_started_page

Contents

Description

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

Usage

add_action( 'wpdatatables_getting_started_page', 'add_element_on_getting_started_page' );

Parameters

  • No params.

Examples

// Callback function for the wpdatatables_getting_started_page action hook
function add_element_on_getting_started_page() { 
   // Your code
}

add_action( 'wpdatatables_getting_started_page', 'add_element_on_getting_started_page' );