doing_action( string|null $hook_name = null )

Returns whether or not an action hook is currently being processed.

Parameters

$hook_name

(string|null) (Optional) Action hook 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( $hook_name = null ) {
	return doing_filter( $hook_name );
}

Changelog

Version Description
3.9.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/doing_action