WP_Plugins_List_Table::bulk_actions() WordPress Method

The WP_Plugins_List_Table::bulk_actions() method is responsible for handling the bulk actions for the plugins list table. The bulk actions are the actions that can be performed on multiple plugins at once. These actions are displayed in the dropdown menu at the top of the plugins list table.

WP_Plugins_List_Table::bulk_actions( string $which = '' ) #


Parameters

$which

(string)(Optional)

Default value: ''


Top ↑

Source

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

	public function bulk_actions( $which = '' ) {
		global $status;

		if ( in_array( $status, array( 'mustuse', 'dropins' ), true ) ) {
			return;
		}

		parent::bulk_actions( $which );
	}

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.