View Admin Hook Names
add_action('nc_before_template', function($path, $root, $hook_name) {
echo "[nc_before_{$root}_{$hook_name}_template]<br>";
},10, 3);
add_action('nc_after_template', function($path, $root, $hook_name) {
echo "[nc_after_{$root}_{$hook_name}_template]<br>";
},10, 3);
Last updated