HTTP/2 200
server: nginx
date: Tue, 14 Oct 2025 19:21:10 GMT
content-type: text/html; charset=UTF-8
vary: Accept-Encoding
x-olaf: ⛄
vary: accept, content-type
link:
; rel="https://api.w.org/"
link:
; rel="alternate"; title="JSON"; type="application/json"
link: ; rel=shortlink
x-frame-options: SAMEORIGIN
content-encoding: gzip
alt-svc: h3=":443"; ma=86400
x-nc: MISS ord 1
WP_List_Table::current_action() – Method | Developer.WordPress.org
WordPress Developer Resources
WP_List_Table::current_action()
WP_List_Table::current_action(): string|false
Gets the current action selected from the bulk actions dropdown.
string|false The action name. False if no action was selected.
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;
}
View all references View on Trac View on GitHub
Version | Description |
---|
3.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.