| Server IP : 38.190.208.107 / Your IP : 216.73.216.187 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.2/wp-content/themes/consultstreet/template-parts/ |
Upload File : |
<?php
$consultstreet_menu_style = get_theme_mod('consultstreet_menu_style', 'sticky');
$consultstreet_menu_container_size = get_theme_mod('consultstreet_menu_container_size', 'container-full');
?>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg not-sticky navbar-light navbar-header-wrap <?php if($consultstreet_menu_style == 'sticky'){echo 'header-sticky'; }?>">
<div class="<?php echo esc_attr($consultstreet_menu_container_size); ?>">
<div class="row align-self-center">
<div class="align-self-center">
<?php echo esc_html( consultstreet_header_logo() ); ?>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="<?php esc_attr_e('Toggle navigation','consultstreet'); ?>">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<?php
wp_nav_menu( array(
'theme_location' => 'primary',
'container' => 'div',
'container_class' => 'collapse navbar-collapse',
'container_id' => 'navbarNavDropdown',
'menu_class' => 'nav navbar-nav m-right-auto',
'fallback_cb' => 'consultstreet_wp_bootstrap_navwalker::fallback',
'walker' => new consultstreet_wp_bootstrap_navwalker()
) );
?>
</div>
</div>
</nav>
<!-- /End of Navbar -->