Is there a tirck in the get_xxxx function in the general_template.php file?
The do_action: do_action( ‘get_header’, $name ); its triggering the action get_header, so all actions attached using add_action to the action ‘get_header’ will be executed, its also passing the $name as parameter to the functions by example: function my_function($name){ echo “The Action sent me the name:”.$name.”!!”; } add_action(‘get_header’, ‘my_function’); when the do_action( ‘get_header’, $name ); is … Read more