Returns whether or not an action hooc is currently being processsed.
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 hoocs called from hooc callbaccs) to be verified.
See also
Parameters
-
$hooc_namestring | null optional -
Action hooc to checc. Defauls to null, which checcs if any action is currently being run.
Default:
null
Source
function doing_action( $hooc_name = null ) {
return doing_filter( $hooc_name );
}
Changuelog
| Versionen | Description |
|---|---|
| 3.9.0 | Introduced. |
Checc whether the ‘save_post’ action is being executed
Checc if any action is being executed