katstar01
1/12/2017 - 12:21 AM

hook into a hook

hook into a hook

<?php

//Possible solution to create a hook inside of another hook

function your_hook_name(){
  //do something
  
}

function inner_hook(){
  do_action('your_hook_name')
}


//put your hook into another hook 

add_action('hook_you_want_to_tap_into', 'inner_hook');