The menu shortcode allows you to display a list of navigation links. The menu HTML should be between the opening and closing shortcodes. The options for this shortcode are shown below. See examples here.
| Option | Default | Example | Description | 
|---|---|---|---|
| type | (empty) | type="menu" | Choose to make your own custom HTML menu or choose to use a WordPress Menu you have created. 
 | 
| menu | (empty) | menu="1" | If you have chosen to use a WP menu you will need to give the ID or slug of the menu that you want to show. | 
| style | button-style-two | style="button-style-one" | The type of style will determine how it looks and colors used: 
 | 
| layout | stacked | layout="inline" | The layout determines the layout of the list items: 
 | 
| levels | (empty) | levels="two-levels" | Choose which depth of sub-menu to show 
 | 
| grouped | 0 | grouped="1" | Determines if the list items have a gap or are grouped as one block with no gaps. | 
Example HTML
[menu style="button-style-one" layout="inline"]
    [li][a href="http://www.example.com"]Example[/a][/li]
    [li][a href="http://www.example.com"]Example[/a][/li]
[/menu]