Source
public function current_action() {
if ( isset( $_REQUEST['action'] ) && isset( $_REQUEST['delete_tags'] ) && 'delete' === $_REQUEST['action'] ) {
return 'bulk-delete';
}
return parent::current_action();
}
CARVIEW |
public function current_action() {
if ( isset( $_REQUEST['action'] ) && isset( $_REQUEST['delete_tags'] ) && 'delete' === $_REQUEST['action'] ) {
return 'bulk-delete';
}
return parent::current_action();
}
Uses | Description |
---|---|
WP_List_Table::current_action()wp-admin/includes/class-wp-list-table.php | Gets the current action selected from the bulk actions dropdown. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.