WP_Links_List_Table::get_bulk_actions()protectedWP 1.0

Method of the class: WP_Links_List_Table{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_bulk_actions();

WP_Links_List_Table::get_bulk_actions() code WP 6.5.2

protected function get_bulk_actions() {
	$actions           = array();
	$actions['delete'] = __( 'Delete' );

	return $actions;
}