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

Changelog
Version Description
WP-2.7.0 Introduced.