HEX
Server: Apache
System: Linux ns9.sgtic-sarl.com 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
User: festartsdmbaorg (5215)
PHP: 8.1.34
Disabled: apache_child_terminate, apache_note, apache_setenv, curl_multi_exec, define_syslog_variables, dl, exec, link, openlog, passthru, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, proc_close, proc_get_status, proc_nice, proc_open, proc_terminate, shell_exec, stream_socket_sendto, symlink, syslog, system
Upload Files
File: /home/users/festartsdmbaorg/www/fest-artsdmba.org/wp-content/themes/oceanwp/partials/topbar/nav.php
<?php
/**
 * Topbar menu displays inside the topbar "content" area
 *
 * @package OceanWP 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( 'ocean_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 OceanWP_Custom_Nav_Walker(),
			)
		);

	endif;
	?>

</div>