WP_Terms_List_Table::get_bulk_actions() –
You appear to be a bot. Output may be restricted
Description
Usage
$array = WP_Terms_List_Table::get_bulk_actions();
Parameters
Returns
array
Source
File name: wordpress/wp-admin/includes/class-wp-terms-list-table.php
Lines:
1 to 9 of 9
protected function get_bulk_actions() { $actions = array(); if ( current_user_can( get_taxonomy( $this->screen->taxonomy )->cap->delete_terms ) ) { $actions['delete'] = __( 'Delete' ); } return $actions; }