has_action()
has_action( string $tag, callable|bool $function_to_che…
has_action( string $tag, callable|bool $function_to_check = false )
检查是否已为挂钩注册任何操作。
Check if any action has been registered for a hook.
目录锚点:#说明#参数#返回#源码
说明(Description)
另见函数 has_filter()
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$tag | (string) | 必需 | 动作挂钩的名称。 |
$function_to_check | (callable | bool) | 可选 | 要检查的回调。 |
返回(Return)
(bool|int)如果省略$function_to_check,则返回boolean以确定钩子是否注册了任何内容。检查特定函数时,将返回该挂钩的优先级,如果未附加该函数,则返回false。使用$function_to_check参数时,此函数可能返回一个计算结果为false(bool|int)0的非布尔值,因此使用==运算符测试返回值。
源码(Source)
/** * Check if any action has been registered for a hook. * * @since 2.5.0 * * @see has_filter() has_action() is an alias of has_filter(). * * @param string $tag The name of the action hook. * @param callback|bool $function_to_check Optional. The callback to check for. Default false. * @return bool|int If $function_to_check 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. When using the * $function_to_check argument, this function may return a non-boolean value * that evaluates to false (e.g.) 0, so use the === operator for testing the * return value. */ function has_action($tag, $function_to_check = false) { return has_filter($tag, $function_to_check); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.5.0 | wp-includes/plugin.php:565 | 10 | 1 function |
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!