Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $defaults = array(
  3. 'theme_location' => 'jeppes-sf',
  4. 'menu' => '',
  5. 'container' => false,
  6. 'container_class' => 'menu-{menu slug}-container',
  7. 'container_id' => 'containerID',
  8. 'menu_class' => 'sf-menu',
  9. 'menu_id' => '',
  10. 'echo' => 'echo',
  11. 'fallback_cb' => 'wp_page_menu',
  12. 'before' => '',
  13. 'after' => '',
  14. 'link_before' => '',
  15. 'link_after' => '',
  16. 'items_wrap' => '',
  17. 'depth' => 1,
  18. 'walker' => ''
  19. );
  20. wp_nav_menu( $defaults );
  21. /* wp_nav_menu( array(
  22. 'theme_location' => 'main-menu', // Setting up the location for the main-menu, Main Navigation.
  23. 'menu_class' => 'sf-menu', //Adding the class for dropdowns
  24. 'container_id' => 'navwrap', //Add CSS ID to the containter that wraps the menu.
  25. 'fallback_cb' => 'wp_page_menu', //if wp_nav_menu is unavailable, WordPress displays wp_page_menu function, which displays the pages of your blog.
  26. 'container' => false,
  27. )
  28. ); */
  29. ?>