Description
The wsf_table_submit_column_actions filter allows you to change the actions shown for each Submissions row.
Usage
add_filter( 'wsf_table_submit_column_actions', 'my_hook_function', 10, 3 );
Parameters
Example
// Add a callback function for the wsf_table_submit_column_actions filter hook add_filter( 'wsf_table_submit_column_actions', 'my_hook_function', 10, 3 ); // Callback function for the wsf_table_submit_column_actions filter hook function my_hook_function( $actions, $item, $status ) { // Your code here ... // Return value return $actions; }
Source File
This hook can be found in:<plugin root>/admin/class-ws-form-wp-list-table-submit.php