WP_Comments_List_Table::current_action(): string|false

In this article

Gets the current action selected from the bulk actions dropdown.

Return

string|false Current action or false if none.

Source

public function current_action() {
	if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) ) {
		return 'delete_all';
	}

	return parent::current_action();
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.