Uses
Uses | Description |
---|---|
wp-includes/plugin.php: remove_all_filters() | Remove all of the hooks from a filter. |
Remove all of the hooks from an action.
(string) (Required) The action to remove hooks from.
(int|bool) (Optional) The priority number to remove them from.
Default value: false
(true) True when finished.
Warning: next() expects parameter 1 to be array, null given in wp-includes/plugin.php on line 431
File: wp-includes/plugin.php
function remove_all_actions( $tag, $priority = false ) { return remove_all_filters( $tag, $priority ); }
Version | Description |
---|---|
2.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/remove_all_actions