wpdatatables_filter_support_page

Contents

Description

This filter is applied to the HTML content of the admin “Get Help” page before it is rendered.

Usage

add_filter( 'wpdatatables_filter_support_page', 'filter_support_page');

Parameters

  • $supportPage default HTML content.

Examples

// Callback function for the wpdatatables_filter_support_page filter hook
function filter_support_page($supportPage) { 
     // Your code
}

add_action( 'wpdatatables_filter_support_page', 'filter_support_page');