wpdatatables_filter_constructor_page

Contents

Description

This filter is applied to the HTML content of the admin “Create a table” page before it is rendered. $createTablePage is the default HTML content.

Usage

add_filter( 'wpdatatables_filter_constructor_page', 'filter_constructor_page');

Parameters

  • $createTablePage default HTML content.

Examples

// Callback function for the wpdatatables_filter_constructor_page filter hook
function filter_constructor_page($createTablePage) { 
     // Your code
}

add_action( 'wpdatatables_filter_constructor_page', 'filter_constructor_page');