Done !
| Server IP : 51.91.236.255 / Your IP : 216.73.217.126 Web Server : Apache System : Linux webm003.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : chloega ( 433239) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/chloega/www/wp-content/themes/inspiro/template-parts/navigation/ |
Upload File : |
<?php
/**
* Displays top navigation
*
* @package Inspiro
* @subpackage Inspiro_Lite
* @since Inspiro 1.0.0
* @version 1.0.0
*/
$search_show = get_theme_mod( 'header_search_show', true ); // here must have default true value
$search_display = $search_show ? 'block' : 'none';
$header_layout_type = inspiro_get_theme_mod( 'header-layout-type' );
$header_menu_style = inspiro_get_theme_mod( 'header-menu-style' );
$header_hide_menu_option = inspiro_get_theme_mod( 'header_hide_main_menu' );
?>
<div id="site-navigation" class="navbar">
<div class="header-inner inner-wrap <?php echo sanitize_html_class( $header_layout_type ); ?> <?php echo sanitize_html_class( $header_menu_style ); ?>">
<div class="header-logo-wrapper">
<?php inspiro_custom_logo(); ?>
</div>
<div class="header-navigation-wrapper">
<?php if ( ! $header_hide_menu_option ) : ?>
<nav class="primary-menu-wrapper navbar-collapse collapse" aria-label="<?php echo esc_attr_x( 'Top Horizontal Menu', 'menu', 'inspiro' ); ?>" role="navigation">
<?php
wp_nav_menu(
array(
'theme_location' => 'primary',
'container' => false,
'menu_class' => 'nav navbar-nav dropdown sf-menu',
// fallback_cb outputs <div>, so we wrap it manually below
'fallback_cb' => function() {
echo '<ul class="nav navbar-nav dropdown sf-menu">';
wp_list_pages(array(
'title_li' => '',
));
echo '</ul>';
},
)
);
?>
</nav>
<?php endif; ?>
</div>
<div class="header-widgets-wrapper">
<?php if ( is_active_sidebar( 'header_social' ) ) : ?>
<div class="header_social">
<?php dynamic_sidebar( 'header_social' ); ?>
</div>
<?php endif ?>
<div id="sb-search" class="sb-search" style="display: <?php echo esc_attr( $search_display ); ?>;">
<?php get_template_part( 'template-parts/header/search', 'form' ); ?>
</div>
<?php if ( has_nav_menu( 'primary' ) || is_active_sidebar( 'sidebar' ) ) : ?>
<button type="button" class="navbar-toggle">
<span class="screen-reader-text"><?php esc_html_e( 'Toggle sidebar & navigation', 'inspiro' ); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<?php endif ?>
</div>
</div><!-- .inner-wrap -->
</div><!-- #site-navigation -->