wpdatatables_filter_dashboard_page

Contents

Description

This filter is applied to the Dashboard page HTML.

Usage

add_filter( 'wpdatatables_filter_dashboard_page', 'filter_dashboard_page');

Parameters

  • $dashboardPage stringHTML of the dashboard page.

Examples

// Callback function for the wpdatatables_filter_dashboard_page filter hook
function filter_dashboard_page( $dashboardPage ) { 
   // Your code
}

add_filter( 'wpdatatables_filter_dashboard_page', 'filter_dashboard_page');