wpdatatables_filter_charts_table_page

Contents

Description

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

Usage

add_filter( 'wpdatatables_filter_charts_table_page', 'filter_charts_table_page');

Parameters

  • $wpDataChartsPage default HTML content.

Examples

// Callback function for the wpdatatables_filter_charts_table_page filter hook
function filter_charts_table_page($wpDataChartsPage) { 
     // Your code
}

add_action( 'wpdatatables_filter_charts_table_page', 'filter_charts_table_page');