24 lines
539 B
PHP
24 lines
539 B
PHP
<?php
|
|
/**
|
|
* Template for the secondary menu in header.
|
|
*
|
|
* @author ThemeFusion
|
|
* @copyright (c) Copyright by ThemeFusion
|
|
* @link https://avada.com
|
|
* @package Avada
|
|
* @subpackage Core
|
|
*/
|
|
|
|
// Do not allow directly accessing this file.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit( 'Direct script access denied.' );
|
|
}
|
|
?>
|
|
<div class="fusion-secondary-main-menu">
|
|
<div class="fusion-row">
|
|
<?php avada_main_menu(); ?>
|
|
<?php avada_mobile_menu_search(); ?>
|
|
</div>
|
|
</div>
|
|
</div> <!-- end fusion sticky header wrapper -->
|