I would like to display multiple menus on the customizr header. Looking at the header.php file
<?php do_action( '__before_header' ); ?>
<header class="<?php echo tc__f('tc_header_classes', 'tc-header clearfix row-fluid') ?>" role="banner">
<?php
//the '__header' hook is used by (ordered by priorities) : TC_header_main::$instance->tc_logo_title_display(), TC_header_main::$instance->tc_tagline_display(), TC_header_main::$instance->tc_navbar_display()
do_action( '__header' );
?>
</header>
<?php
//This hook is filtered with the slider : TC_slider::$instance->tc_slider_display()
do_action ( '__after_header' )
?>
I have a main menu I want to display on the top and then I have another menu I want to display underneath the slider.
can I add a php function
<?php
do_action('__display_extra_menu')'
?>
Where do I created this extra tag for the php function?
And I want it to be an additional menu I have all ready created in wordpress through the menu creation page.
Thanks!