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



has_action › WordPress Function

Since2.5.0
已弃用n/a
has_action ( $hook_name, $callback = false )
参数: (2)
  • (string) $hook_name The name of the action hook.
    Required: Yes
  • (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: No
    默认: 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.
定义在:
文档:

Checks if any action has been registered for a hook.

When using the $callback 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( $hook_name, $callback = false ) {
	return has_filter( $hook_name, $callback );
}