wpdatatables_filter_edit_page

Contents

Description

This filter is applied to the HTML content of the admin “Table configuration” page before it is rendered. $tableConfigurationPage is the default HTML content.

Usage

add_filter( 'wpdatatables_filter_edit_page', 'filter_edit_page');

Parameters

  • $tableConfigurationPage default HTML content.

Examples

// Callback function for the wpdatatables_filter_edit_page filter hook
function filter_edit_page($tableConfigurationPage) { 
     // Your code
}

add_action( 'wpdatatables_filter_edit_page', 'filter_edit_page');