wpdatatables_after_filtering_form

Contents

Description

This action is called after the filtering form is rendered on the page.

Usage

add_action( 'wpdatatables_after_filtering_form', 'after_filtering_form' );

Parameters

  • $tableId integer
    ID of the table.

Examples

// Callback function for the wpdatatables_before_render_table action hook
function after_filtering_form( $tableId ) { 
   // Check for specific table Id
   if ( $tableId == 1) { 
     // Your code
   } 
}

add_action( 'wpdatatables_after_filtering_form', 'after_filtering_form', 10 );