wpdatatables_filter_edit_page_simple_table

Contents

Description

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

Usage

add_filter( 'wpdatatables_filter_edit_page_simple_table', 'filter_edit_page_simple_table');

Parameters

  • $tableConfigurationPage default HTML content of the editing page for a Simple table.

Examples

// Callback function for the wpdatatables_filter_edit_page_simple_table filter hook
function filter_edit_page_simple_table($tableConfigurationPage) { 
     // Your code
}

add_filter( 'wpdatatables_filter_edit_page_simple_table', 'filter_edit_page_simple_table');