wpdatatables_after_activation_method

Contents

Description

Thia action is triggered after the plugin is activated. It allows you to perform necessary setup tasks, such as creating or configuring database tables, initializing plugin settings, or other one-time setup actions when the plugin is activated.

Usage

add_action('wpdatatables_after_activation_method', 'custom_activation_method');

Parameters

  • None
    This action does not pass any parameters to the callback function.

Examples

// Callback function for wpdatatables_after_activation_method action
function custom_activation_method() {
    // Your code here
}

add_action('wpdatatables_after_activation_method', 'custom_activation_method');