doing_action( string|null $action = null )
Retrieve the name of an action currently being processed.
Parameters
- $action
-
(Optional) Action to check. Defaults to null, which checks if any action is currently being run.
Default value: null
Return
(bool) Whether the action is currently in the stack.
Source
File: wp-includes/plugin.php
function doing_action( $action = null ) {
return doing_filter( $action );
}
Changelog
Version | Description |
---|---|
WP-3.9.0 | Introduced. |