Skip to content

Instantly share code, notes, and snippets.

@frontend-coder
Last active July 17, 2022 15:51
Show Gist options
  • Save frontend-coder/cf7a571d9c8619ac13471361a0e6cf85 to your computer and use it in GitHub Desktop.
Save frontend-coder/cf7a571d9c8619ac13471361a0e6cf85 to your computer and use it in GitHub Desktop.
39. Як створити власний хук крючок #wordpress
function domain_name_func() {
echo 'Text';
}
add_action('domain_name_hook','domain_name_func', 10);
// Розмістити в місці, де повинний виведенний код, який буде привязаний до створенного хука
do_action('domain_name_hook');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment