Skip to content

Instantly share code, notes, and snippets.

@GarySwift
Created March 28, 2017 18:49
Show Gist options
  • Save GarySwift/8a9d28921864799c06c92b511877b9f8 to your computer and use it in GitHub Desktop.
Save GarySwift/8a9d28921864799c06c92b511877b9f8 to your computer and use it in GitHub Desktop.
FoundationPress: Desktop Center Navigation Addon
<?php
/**
* FoundationPress: Desktop Center Navigation Addon
*
* A modifcation to the WordPress starter theme FoundationPress created by olefredrik based on Zurb Foundation.
*
* @link http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples
* @package FoundationPress
* @ref https://github.com/olefredrik/FoundationPress
*/
# Unregister existing menus
unregister_nav_menu( 'top-bar-r' );
unregister_nav_menu( 'mobile-nav' );
# Register menus
register_nav_menus(array(
'top-bar-center' => 'Desktop Center',
'mobile-nav' => 'Mobile',
));
/**
* Slightly modified version of the foundationpress_top_bar_right function
* Desktop navigation - center top bar
*
* @link http://codex.wordpress.org/Function_Reference/wp_nav_menu
*/
if ( ! function_exists( 'foundationpress_top_bar_center' ) ) {
function foundationpress_top_bar_center() {
wp_nav_menu( array(
'container' => false,
'menu_class' => 'dropdown menu',
'items_wrap' => '<ul id="%1$s" class="%2$s desktop-menu" data-dropdown-menu>%3$s</ul>',
'theme_location' => 'top-bar-center',
'depth' => 3,
'fallback_cb' => false,
'walker' => new Foundationpress_Top_Bar_Walker(),
));
}
}
// Desktop Center Style
div.top-bar-center {
margin: 0 auto;
ul {
text-align: center;
li {
display: inline-block;
}
}
}
<!-- example usage of center top bar -->
<div class="top-bar-center" data-margin-top="100px">
<?php foundationpress_top_bar_center(); ?>
<?php if ( ! get_theme_mod( 'wpt_mobile_menu_layout' ) || get_theme_mod( 'wpt_mobile_menu_layout' ) == 'topbar' ) : ?>
<?php get_template_part( 'template-parts/mobile-top-bar' ); ?>
<?php endif; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment