wpdatatables_filter_system_info_page

Contents

Description

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

Usage

add_filter( 'wpdatatables_filter_system_info_page', 'filter_system_info_page');

Parameters

  • $systemInfoPage default HTML content.

Examples

// Callback function for the wpdatatables_filter_system_info_page filter hook
function filter_system_info_page($systemInfoPage) { 
     // Your code
}

add_action( 'wpdatatables_filter_system_info_page', 'filter_system_info_page');