Skip to content

Instantly share code, notes, and snippets.

@guillermorangel
Created September 17, 2013 18:03
Show Gist options
  • Save guillermorangel/6598181 to your computer and use it in GitHub Desktop.
Save guillermorangel/6598181 to your computer and use it in GitHub Desktop.
<?php
function bs_nav_menu(){
$menu = wp_page_menu( array(
'menu_class' => 'menu-container',
'echo' => false
));
$menu = str_replace(
array(
'current_page_item',
'current_page_parent',
'current_page_ancestor',
'<ul>',
'page_item',
'<ul class=\'children\'>'
),
array(
'current-menu-item',
'current-menu-parent',
'current-menu-ancestor',
'<ul class="menu">',
'menu-item',
'<ul class="sub-menu">'
),
$menu
);
echo $menu;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment