wpdatatables_browse_page

Contents

Description

This action is executed when the user opens the table browse page.

Usage

add_action( 'wpdatatables_browse_page', 'add_element_on_browse_page' );

Parameters

  • No params.

Examples

// Callback function for the wpdatatables_browse_page action hook
function add_element_on_browse_page( ) { 
   // Your code
}

add_action( 'wpdatatables_browse_page', 'add_element_on_browse_page' );