wpDataTables actions

Contents

WordPress Actions provide a convenient way to “hook” into different plugins without changing their code. Basically, “actions” are user-defined functions, assigned to certain labels, that are called by the plugin core at defined moments of its execution. Unlike filters, actions do not return any data, they are simply executed.

You can read more about using WordPress actions and assigning your functions to actions in WordPress Codex. Here, we will provide a list of actions defined in the wpDataTables plugin that you can use to customize it for your needs.

Please note that using hooks requires a certain level of programming skills and included support refers only to advice.