Definition:
function remove_all_actions($tag, $priority = false) {}
Remove all of the hooks from an action.
Parameters
- string $tag: The action to remove hooks from.
- int $priority: The priority number to remove them from.
Return values
returns:True when finished.
Source code
function remove_all_actions($tag, $priority = false) {
return remove_all_filters($tag, $priority);
}
2703

February 12, 2011 


No comments yet... Be the first to leave a reply!