doing_action
函数
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: 否
- Default: null
-
(string|null)
- 返回值
-
- (bool) Whether the action is currently in the stack.
- 相关
-
- current_action()
- did_action()
- 定义位置
-
-
wp-includes/plugin.php
, line 661
-
wp-includes/plugin.php
- 引入
- 3.9.0
- 弃用
- –
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 ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。