wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



has_action › WordPress Function

Depuis2.5.0
Dépréciéen/a
has_action ( $hook_name, $callback = false )
Paramètres: (2)
  • (string) $hook_name The name of the action hook.
    Requis: Oui
  • (callable|string|array|false) $callback Optional. The callback to check for. This function can be called unconditionally to speculatively check a callback that may or may not exist. Default false.
    Requis: Non
    Défaut: false
Voir:
Retourne:
  • (bool|int) If `$callback` is omitted, returns boolean for whether the hook has anything registered. When checking a specific function, the priority of that hook is returned, or false if the function is not attached.
Défini(e) dans:
Codex:

Checks if any action has been registered for a hook.

When using the $callback argument, this function may return a non-boolean value that evaluates to false (e.g. 0), so use the === operator for testing the return value.


Source

function has_action( $hook_name, $callback = false ) {
	return has_filter( $hook_name, $callback );
}