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.
$hook_namestringrequired
$callbackcallable|string|array|falseoptional
Default:false
$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.Since this action is an alias of has_filter() , it also uses the global array $wp_filter that stores all of the filters / actions.
function has_action( $hook_name, $callback = false ) {
return has_filter( $hook_name, $callback );
}
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/has_action