has_action

函数
has_action ( $hook_name, $callback = false )
参数
  • (string) $hook_name The name of the action hook.
    Required:
  • (callable|string|array|false) $callback Optional. The callback to check for. This function can be called unconditionally to speculatively check a callback that may or may not exist. Default false.
    Required:
    Default: false
返回值
  • (bool|int) If `$callback` is omitted, returns boolean for whether the hook has anything registered. When checking a specific function, the priority of that hook is returned, or false if the function is not attached.
相关
  • has_filter()
定义位置
相关方法
add_actiondo_actiondid_actiondoing_actionhas_category
引入
2.5.0
弃用
-

has_action: 这是一个WordPress的函数,用来检查是否有任何动作钩子被注册为一个给定的动作: 该函数将动作名称作为参数,如果有任何注册的动作钩子,则返回一个布尔值,即true,否则为false。

检查是否有任何动作被注册为钩子。

当使用`$callback`参数时,该函数可能会返回一个非布尔值,评估为false(例如0),所以使用`===`操作符来测试返回值。

function has_action( $hook_name, $callback = false ) {
	return has_filter( $hook_name, $callback );
}

常见问题

FAQs
查看更多 >