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



doing_filter › WordPress Function

Since3.9.0
已弃用n/a
doing_filter ( $hook_name = null )
参数:
  • (string|null) $hook_name Optional. Filter hook to check. Defaults to null, which checks if any filter is currently being run.
    Required: No
    默认: null
查看:
返回:
  • (bool) Whether the filter is currently in the stack.
定义在:
文档:

Returns whether or not a filter hook is currently being processed.

The function current_filter() only returns the most recent filter being executed. did_filter() returns the number of times a filter has been applied during the current request. This function allows detection for any filter currently being executed (regardless of whether it's the most recent filter to fire, in the case of hooks called from hook callbacks) to be verified.


源码

function doing_filter( $hook_name = null ) {
	global $wp_current_filter;

	if ( null === $hook_name ) {
		return ! empty( $wp_current_filter );
	}

	return in_array( $hook_name, $wp_current_filter, true );
}