HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/companiesonthegouk/wp-content/themes/apper/partials/topbar/nav.php
<?php
/**
 * Topbar menu displays inside the topbar "content" area
 *
 * @package Apper WordPress theme
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
} ?>

<div id="top-bar-nav" class="navigation clr">

	<?php
	// Menu Location
	$menu_location = apply_filters( 'topbar_menu_location', 'topbar_menu' );

	if ( has_nav_menu( $menu_location ) || $ms_global_menu ) :

		// Display menu
		wp_nav_menu( array(
			'theme_location' => $menu_location,
			'fallback_cb'    => false,
			'container'      => false,
			'menu_class'     => 'top-bar-menu dropdown-menu sf-menu',
			'walker'         => new ACMTHEMES_Custom_Nav_Walker(),
		) );

	endif; ?>

</div>