HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/l2pbkn5l6xav/public_html/wp-content/themes/sveva/template-part/header-layout.php
<?php

/**
 * Wp in Progress
 * 
 * @package Wordpress
 * @author WPinProgress
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * It is also available at this URL: http://www.gnu.org/licenses/gpl-3.0.txt
 */

if (!function_exists('sveva_header_layout_function')) {

	function sveva_header_layout_function($theme_location, $menu_class) { 
			
			do_action( 'suevafree_mobile_menu', $theme_location, $menu_class );

	?>

            <div id="wrapper">
        
                <div id="overlay-body"></div>
				
                <div id="header-wrapper" >
                        
                    <header id="header" class="header-9" >
                        
                        <div class="container">
                        
                            <div class="row">
                                    
                                <div class="col-md-2" >
                                
                                	<div id="logo">
									
                                    	<?php do_action( 'suevafree_logo_layout', 'off' ); ?>
                                	
                                    </div>

                                </div>

                                <div class="col-md-10" >
                                 
                                    <nav class="suevafree-menu suevafree-general-menu">
                                            
                                        <?php 
										
											wp_nav_menu( array(
                                        		'theme_location' => $theme_location,
                                        		'menu_class' => $menu_class,
												'container' => 'false',
												'depth' => 3
												)
											); 
										
										?>
                                        
                                    </nav> 

                                    <div class="mobile-navigation"><i class="fa fa-bars"></i> </div>

                                </div>
            
                            </div>
                            
                        </div>
                                    
                    </header>
            
                </div>

	<?php

                if ( !is_front_page() && suevafree_setting('suevafree_view_breadcrumb') == 'on' ) 
                	do_action('suevafree_get_breadcrumb'); 

	
	}

	add_action( 'sveva_header_layout', 'sveva_header_layout_function', 10, 2 );

}

?>