Exemplo n.º 1
0
 /**
  * Removes a function from a specified filter hook.
  *
  * This function removes a function attached to a specified filter hook. This
  * method 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 $function_to_remove 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.
  *
  * @param string   $tag                The filter hook to which the function to be removed is hooked.
  * @param callback $function_to_remove The name of the function which should be removed.
  * @param int      $priority           optional. The priority of the function (default: 10).
  *
  * @return boolean Whether the function existed before it was removed.
  */
 public function removeFilter($tag, $function_to_remove, $priority = 10)
 {
     return HuradHook::remove_filter($tag, $function_to_remove, $priority);
 }