Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
05693133dd
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (16 sloc) 374 Bytes
<?php
wp_nav_menu(
array(
'menu' => 'aside',
'menu_class' => 'nav nav-pills nav-stacked',
'theme_location' => 'primary',
'container' => false,
'fallback_cb' => false,
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'walker' => new Secondary_Bootstrap_Nav_Walker(),
'depth' => 2,
'sub_menu' => true,
'start_depth' => 2
)
);
?>