WP_Posts_List_Table::get_bulk_actions() WordPress Method

The WP_Posts_List_Table::get_bulk_actions() method is used to get the bulk actions that are available for posts.

WP_Posts_List_Table::get_bulk_actions() #


Return

(array)


Top ↑

Source

File: wp-admin/includes/class-wp-posts-list-table.php

421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
protected function get_bulk_actions() {
    $actions       = array();
    $post_type_obj = get_post_type_object( $this->screen->post_type );
 
    if ( current_user_can( $post_type_obj->cap->edit_posts ) ) {
        if ( $this->is_trash ) {
            $actions['untrash'] = __( 'Restore' );
        } else {
            $actions['edit'] = __( 'Edit' );
        }
    }
 
    if ( current_user_can( $post_type_obj->cap->delete_posts ) ) {
        if ( $this->is_trash || ! EMPTY_TRASH_DAYS ) {
            $actions['delete'] = __( 'Delete permanently' );
        } else {
            $actions['trash'] = __( 'Move to Trash' );
        }
    }
 
    return $actions;
}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by the Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.