remove_all_filters( string $tag, int|bool $priority = false )
Remove all of the hooks from a filter.
Description Description
Parameters Parameters
- $tag
-
(string) (Required) The filter to remove hooks from.
- $priority
-
(int|bool) (Optional) The priority number to remove.
Default value: false
Return Return
(true) True when finished.
Source Source
File: wp-includes/plugin.php
function remove_all_filters( $tag, $priority = false ) {
global $wp_filter;
if ( isset( $wp_filter[ $tag ] ) ) {
$wp_filter[ $tag ]->remove_all_filters( $priority );
if ( ! $wp_filter[ $tag ]->has_filters() ) {
unset( $wp_filter[ $tag ] );
}
}
return true;
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 2.7.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example:
remove_all_filters('the_content', 'plugin_filters');This example will remove all of the plugins hooks from the_content function.