WP_Privacy_Requests_Table::get_bulk_actions
Gets bulk actions.
Method of the class: WP_Privacy_Requests_Table{}
No Hooks.
Returns
Array. Array of bulk action labels keyed by their action.
Usage
// protected - for code of main (parent) or child class $result = $this->get_bulk_actions();
Changelog
| Since 4.9.6 | Introduced. |
WP_Privacy_Requests_Table::get_bulk_actions() WP Privacy Requests Table::get bulk actions code WP 6.9.1
protected function get_bulk_actions() {
return array(
'resend' => __( 'Resend confirmation requests' ),
'complete' => __( 'Mark requests as completed' ),
'delete' => __( 'Delete requests' ),
);
}