Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: bulk_actions-{$this->screen->id}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
448                 * Filters the list table bulk actions drop-down.
449                 *
450                 * The dynamic portion of the hook name, `$this->screen->id`, refers
451                 * to the ID of the current screen, usually a string.
452                 *
453                 * @since 3.1.0
454                 *
455                 * @param string[] $actions An array of the available bulk actions.
456                 */
457                $this->_actions = apply_filters( "bulk_actions-{$this->screen->id}", $this->_actions ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
458
459                $two = '';
460           } else {
461                $two = '2';
462           }
463
464           if ( empty( $this->_actions ) ) {
465                return;
466           }