doing_action( string|null $hook_name = null ): bool
Returns whether or not an action hook is currently being processed.
Contents
Description
The function current_action() only returns the most recent action being executed.
did_action() returns the number of times an action has been fired during the current request.
This function allows detection for any action currently being executed (regardless of whether it’s the most recent action to fire, in the case of hooks called from hook callbacks) to be verified.
See also
Parameters
-
$hook_name
string|null Optional -
Action hook to check. Defaults to null, which checks if any action is currently being run.
Default:
null
Return
bool Whether the action is currently in the stack.
Source
File: wp-includes/plugin.php
.
View all references
function doing_action( $hook_name = null ) {
return doing_filter( $hook_name );
}
Changelog
Version | Description |
---|---|
3.9.0 | Introduced. |
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
Check if any action is being executed