remove_filter


remove_filter ( $hook_name, $callback, $priority = 10 )

Parameters:
  • (string) hook_name The filter hook to which the function to be removed is hooked.
  • (callable|string|array) callback The callback to be removed from running when the filter is applied. This function can be called unconditionally to speculatively remove a callback that may or may not exist.
  • (int) priority Optional. The exact priority used when adding the original filter callback. Default 10.
Returns:
  • (bool) Whether the function existed before it was removed.
Defined at:

Description

Removes a callback function from a filter hook.This can be used to remove default functions attached to a specific filter hook and possibly replace them with a substitute. To remove a hook, the `$callback` and `$priority` arguments must match when the hook was added. This goes for both filters and actions. No warning will be given on removal failure.

Related Functions

remove_all_filters, kses_remove_filters, current_filter, move_dir, remove_role

Top Google Results

User discussions

wpseek mobile