wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



remove_all_actions › WordPress Function

Seit2.7.0
Veraltetn/v
remove_all_actions ( $hook_name, $priority = false )
Parameter: (2)
  • (string) $hook_name The action to remove callbacks from.
    Erforderlich: Ja
  • (int|false) $priority Optional. The priority number to remove them from. Default false.
    Erforderlich: Nein
    Standard: false
Gibt zurück:
  • (true) Always returns true.
Definiert in:
Codex:

Removes all of the callback functions from an action hook.



Quellcode

function remove_all_actions( $hook_name, $priority = false ) {
	return remove_all_filters( $hook_name, $priority );
}