doing_action( string|null $action = null )
Retrieve the name of an action currently being processed.
Description Description
Parameters Parameters
- $action
-
(string|null) (Optional) Action to check. Defaults to null, which checks if any action is currently being run.
Default value: null
Return Return
(bool) Whether the action is currently in the stack.
Source Source
File: wp-includes/plugin.php
function doing_action( $action = null ) {
return doing_filter( $action );
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 3.9.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Check whether the ‘save_post’ action is being executed
if ( doing_action( 'save_post' ) ) { // Do awesome here. }Check if any action is being executed
if ( doing_action() ) { // Do awesome here. }