WP_Hook::remove_all_filters( int|false $priority = false )
Removes all callbacks from the current filter.
Parameters
- $priority
-
(Optional) The priority number to remove.
Default value: false
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();
} else if ( isset( $this->callbacks[ $priority ] ) ) {
unset( $this->callbacks[ $priority ] );
}
if ( $this->nesting_level > 0 ) {
$this->resort_active_iterations();
}
}
Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |