Limited time discount Clean, Organized Data All Season Long
Up to 50%Off
Grab Now
Skip to main content

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');