wpdatatables_filter_welcome_page

Contents

Description

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

Usage

add_filter( 'wpdatatables_filter_welcome_page', 'filter_welcome_page');

Parameters

  • $welcomePage default HTML content.

Examples

// Callback function for the wpdatatables_filter_welcome_page filter hook
function filter_welcome_page($welcomePage) { 
     // Your code
}

add_action( 'wpdatatables_filter_welcome_page', 'filter_welcome_page');