wpdatatables_get_system_fonts

Contents

Description

This filter is applied to the table metadata returned from the DB (table settings, link to the data source file, or MySQL query).

Usage

add_filter( 'wpdatatables_get_system_fonts', 'filter_system_fonts' );

Parameters

  • $systemFonts array
    Array of values.

Examples

// Callback function for the wpdatatables_get_system_fonts filter hook
function filter_system_fonts( $systemFonts ) { 
    // Your code
}

add_action( 'wpdatatables_get_system_fonts', 'filter_system_fonts');