has_filter

函数
has_filter ( $hook_name, $callback = false )
参数
  • (string) $hook_name The name of the filter 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.
定义位置
相关方法
add_filterhas_termapply_filtersdid_filterwp_list_filter
引入
2.5.0
弃用
-

has_filter – 这是一个PHP函数,用来检查一个特定的过滤器是否已经被定义。过滤器是WordPress的一个核心概念,允许开发者通过挂钩特定的动作或过滤器来修改核心函数和插件的行为。has_filter函数需要两个参数:第一个是过滤器的名称,第二个是过滤器的可选优先级。

检查是否有任何过滤器被注册为钩子。

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

function has_filter( $hook_name, $callback = false ) {
	global $wp_filter;

	if ( ! isset( $wp_filter[ $hook_name ] ) ) {
		return false;
	}

	return $wp_filter[ $hook_name ]->has_filter( $hook_name, $callback );
}

常见问题

FAQs
查看更多 >