wpdatatables_filter_browse_page

Contents

Description

This filter is applied to the HTML content of the Admin “wpDataTables” page before it is rendered. $wpDataTablesPage is the default HTML content.

Usage

add_filter( 'wpdatatables_filter_browse_page', 'filter_browse_page');

Parameters

  • $wpDataTablesPage default HTML content.

Examples

// Callback function for the wpdatatables_filter_browse_page filter hook
function filter_browse_page($wpDataTablesPage) { 
     // Your code
}

add_action( 'wpdatatables_filter_browse_page', 'filter_browse_page');