W3cubDocs

/WordPress

remove_all_filters( string $tag, int|bool $priority = false )

Remove all of the hooks from a filter.

Parameters

$tag

(string) (Required) The filter to remove hooks from.

$priority

(int|bool) (Optional) The priority number to remove.

Default value: false

Return

(true) True when finished.

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;
}

Changelog

Version Description
2.7.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/remove_all_filters