wpseek.com
WordPress开发者和主题制作者的搜索引擎



doing_action › WordPress Function

Since3.9.0
已弃用n/a
doing_action ( $hook_name = null )
参数:
  • (string|null) $hook_name Optional. Action hook to check. Defaults to null, which checks if any action is currently being run.
    Required: No
    默认: null
查看:
返回:
  • (bool) Whether the action is currently in the stack.
定义在:
文档:

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

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.


源码

function doing_action( $hook_name = null ) {
	return doing_filter( $hook_name );
}