HEX
Server: LiteSpeed
System: Linux da4 4.18.0-553.74.1.lve.el8.x86_64 #1 SMP Tue Sep 9 14:25:24 UTC 2025 x86_64
User: wwwprimemarka (2294)
PHP: 5.6.40
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wwwprimemarka/public_html/wp-content/themes/Zephyr/framework/templates/widgets/nav-main.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );

/**
 * Header navigation menu block
 *
 * (!) Important: this file is not intended to be overloaded, so use the below hooks for customizing instead
 *
 * @action Before the template: 'us_before_template:templates/widgets/nav-main'
 * @action After the template: 'us_after_template:templates/widgets/nav-main'
 */

$menu_location = apply_filters( 'us_main_menu_location', 'us_main_menu' );
if ( ! has_nav_menu( $menu_location ) ) {
	return;
}

$us_layout = US_Layout::instance();

$classes = '';
$list_classes = ' level_1 hover_' . us_get_option( 'menu_hover_effect', 'none' );
$classes .= ' layout_' . ( ( $us_layout->header_layout != 'sided' ) ? 'hor' : 'ver' );
$classes .= ' type_desktop';
$classes .= ' animation_' . us_get_option( 'menu_dropdown_effect', 'opacity' );
if ( us_get_option( 'menu_height' ) ) {
	$classes .= ' height_' . ( us_get_option( 'menu_height' ) ? 'full' : 'auto' );
}
$list_classes .= ' hidden';

?>
<!-- NAV -->
<nav class="w-nav<?php echo $classes ?>">
	<div class="w-nav-control"></div>
	<ul class="w-nav-list<?php echo $list_classes ?>">
		<?php wp_nav_menu( array(
			'theme_location' => $menu_location,
			'container' => 'ul',
			'container_class' => 'w-nav-list',
			'walker' => new US_Walker_Nav_Menu(),
			'items_wrap' => '%3$s',
			'fallback_cb' => FALSE,
		) ); ?>
	</ul>
</nav><!-- /NAV -->