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
返回值
  • (bool) Whether the action is currently in the stack.
相关
  • current_action()
  • did_action()
定义位置
相关方法
do_actiondid_actionadd_actionwp_doing_crondo_settings_sections
引入
3.9.0
弃用
-

doing_action: 这是一个WordPress的动作,当一个特定的动作被执行时就会被触发。开发人员可以使用这个动作在WordPress的执行过程中的特定点上执行代码。

返回当前是否正在处理一个动作钩子。

函数current_action()只返回最近正在执行的动作。 did_action()返回在当前请求中一个动作被触发的次数。

这个函数允许对当前正在执行的任何动作(不管它是否是最近的动作,在从钩子回调中调用的钩子的情况下)的检测进行验证。

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

常见问题

FAQs
查看更多 >