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