Bulk action hook for admin pages which uses WP_List_Table
You have to use “process_bulk_action” function like this: public function process_bulk_action() { //nonce validations,etc $action = $this->current_action(); switch ( $action ) { case ‘export_action’: // Do whatever you want wp_redirect( esc_url( add_query_arg() ) ); break; default: // do nothing or something else return; break; } return; } } If you need a complete example this … Read more