Is there a way to check if a custom hook gets called upon? I would like to display a placeholder if no output will be passed to it.
2 Answers
I believe you are looking for has_action
, which should …
Check if any action has been registered for a hook.
if (has_action('custom_action')) {
// stuff
} else {
// different stuff
}