WP_Hook::remove_all_filters( int|bool $priority = false )

Removes all callbacks from the current filter.


Description Description


Parameters Parameters

$priority

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

Default value: false


Top ↑

Source Source

File: wp-includes/class-wp-hook.php

	public function remove_all_filters( $priority = false ) {
		if ( ! $this->callbacks ) {
			return;
		}

		if ( false === $priority ) {
			$this->callbacks = array();
		} elseif ( isset( $this->callbacks[ $priority ] ) ) {
			unset( $this->callbacks[ $priority ] );
		}

		if ( $this->nesting_level > 0 ) {
			$this->resort_active_iterations();
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.