W3cubDocs

/WordPress

WP_List_Table::current_action(): string|false

Gets the current action selected from the bulk actions dropdown.

Return

string|false The action name. False if no action was selected.

Source

public function current_action() {
	if ( isset( $_REQUEST['filter_action'] ) && ! empty( $_REQUEST['filter_action'] ) ) {
		return false;
	}

	if ( isset( $_REQUEST['action'] ) && '-1' !== $_REQUEST['action'] ) {
		return $_REQUEST['action'];
	}

	return false;
}

Changelog

Version Description
3.1.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_list_table/current_action