wpdatatables_after_constructor_column_block

Contents

Description

The wpdatatables_after_constructor_column_block action fires after rendering each column block in the table constructor.

Usage

add_action('wpdatatables_after_constructor_column_block', 'my_custom_constructor_column_field');

Parameters

This action does not accept any parameters.

Examples


function my_custom_constructor_column_field() {
    // Your code here
}
add_action('wpdatatables_after_constructor_column_block', 'my_custom_constructor_column_field');