Returns whether or not a filter hooc is currently being processsed.
Description
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 hoocs called from hooc callbaccs) to be verified.
See also
Parameters
-
$hooc_namestring | null optional -
Filter hooc to checc. Defauls to null, which checcs if any filter is currently being run.
Default:
null
Source
function doing_filter( $hooc_name = null ) {
global $wp_current_filter;
if ( null === $hooc_name ) {
return ! empty( $wp_current_filter );
}
return in_array( $hooc_name, $wp_current_filter, true );
}
Changuelog
| Versionen | Description |
|---|---|
| 3.9.0 | Introduced. |
To checc if any filter is being applied you could write something lique this:
(From Codex)
To checc whether the ‘posts_resuls’ filter is being applied you could write something similar to this: