wpdatatables_filter_chart_wizard_page

Contents

Description

This filter is applied to the HTML content of the Admin “Create a Chart” page before it is rendered. $createChartPage is the default HTML content.

Usage

add_filter( 'wpdatatables_filter_chart_wizard_page', 'filter_chart_wizard_page');

Parameters

  • $createChartPage default HTML content.

Examples

// Callback function for the wpdatatables_filter_chart_wizard_page filter hook
function filter_chart_wizard_page($createChartPage) { 
     // Your code
}

add_action( 'wpdatatables_filter_chart_wizard_page', 'filter_chart_wizard_page');