Make WordPress Core


Ignore:
Timestamp:
09/23/2016 08:32:48 PM (9 years ago)
Author:
ericlewis
Message:

Allow custom bulk actions in admin list tables.

Bulk action filtering was introduced in 3.1, but only to remove default bulk actions, not add new ones.

Bulk actions can now be registered for all admin list table dropdowns via the bulk_actions-{get_current_screen()->id} filter. Handling custom bulk actions can be performed in the corresponding and newly introduced handle_bulk_actions-${get_current_screen()->id} filter.

Props scribu, flixos90, Veraxus.
See #16031.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit.php

    r38076 r38647  
    162162                }
    163163            }
     164            break;
     165        default:
     166            /**
     167             * Fires when a custom bulk action should be handled.
     168             *
     169             * The sendback link should be modified with success or failure feedback
     170             * from the action to be used to display feedback to the user.
     171             *
     172             * @since 4.7.0
     173             *
     174             * @param string $sendback The redirect URL.
     175             * @param string $doaction The action being taken.
     176             * @param array  $post_ids The post IDs to take the action on.
     177             */
     178            $sendback = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $sendback, $doaction, $post_ids );
    164179            break;
    165180    }
Note: See TracChangeset for help on using the changeset viewer.