| Server IP : 54.36.91.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux webm021.cluster127.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : uxhactp ( 169076) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/u/x/h/uxhactp/www/wp-content/themes/applica/template-parts/header/ |
Upload File : |
<?php
/**
* Displays the Topbar
*
* @package Applica
*/
$hide_topbar_on_mobile = applica_get_option('hide_topbar_on_mobile');
$enable_topbar_date = applica_get_option('enable_topbar_date');
$enable_topbar_time = applica_get_option('enable_topbar_time');
$enable_topbar_nav = applica_get_option('enable_topbar_nav');
$enable_topbar_social_icons = applica_get_option('enable_topbar_social_icons');
?>
<div id="theme-topbar" class="site-topbar theme-site-topbar <?php echo ($hide_topbar_on_mobile) ? 'hide-on-mobile': '';?>">
<div class="wrapper">
<div class="site-topbar-wrapper">
<div class="site-topbar-item site-topbar-left">
<?php if ( $enable_topbar_date ) :
$date_format = applica_get_option( 'todays_date_format', 'l , j F Y' );
?>
<div class="site-topbar-component topbar-component-date">
<div class="topbar-component-icon">
<?php applica_theme_svg('calendar'); ?>
</div>
<div class="theme-display-date">
<?php echo date_i18n($date_format, current_time('timestamp')); ?>
</div>
</div>
<?php endif; ?>
<?php if ( $enable_topbar_time ) : ?>
<div class="site-topbar-component topbar-component-time">
<div class="topbar-component-icon">
<?php applica_theme_svg('clock'); ?>
</div>
<div class="theme-display-clock"></div>
</div>
<?php endif; ?>
</div>
<div class="site-topbar-item site-topbar-right">
<?php
if ($enable_topbar_social_icons) :
wp_nav_menu(
array(
'theme_location' => 'social-menu',
'container_class' => 'site-topbar-component topbar-component-social-navigation',
'fallback_cb' => false,
'depth' => 1,
'menu_class' => 'theme-social-navigation theme-menu theme-topbar-navigation',
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
)
);
endif;
?>
<?php
if ($enable_topbar_nav) :
wp_nav_menu(
array(
'theme_location' => 'top-menu',
'container_class' => 'site-topbar-component topbar-component-top-navigation',
'fallback_cb' => false,
'depth' => 2,
'menu_class' => 'theme-top-navigation theme-menu theme-topbar-navigation',
)
);
endif;
?>
</div>
</div>
</div>
</div>