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
2

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
}

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *