Uses
Uses | Description |
---|---|
wp-includes/plugin.php: doing_filter() | Retrieve the name of a filter currently being processed. |
Retrieve the name of an action currently being processed.
(string|null) (Optional) Action to check. Defaults to null, which checks if any action is currently being run.
Default value: null
(bool) Whether the action is currently in the stack.
File: wp-includes/plugin.php
function doing_action( $action = null ) { return doing_filter( $action ); }
Version | Description |
---|---|
3.9.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/doing_action