Advertisement
Guest User

Untitled

a guest
Mar 8th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <?php if(function_exists('wp_nav_menu')) : // Checks if this version of WP supports menus ?>
  2.  
  3. <?php wp_nav_menu(
  4. array(
  5. 'theme_location' => 'member_nav', // Link this menu to a registered location
  6. 'container' => 'div', // specify div as container wrapper
  7. 'container_id' => 'member_login', // ID for container wrapper div
  8. 'menu_class' => 'mmbr_log', // class on UL
  9. 'fallback_cb' => 'false', // Falls back to no menu when nothing specified in dashboard
  10. 'depth' => 0 //How many levels of the hierarchy are included
  11. ));
  12. ?>
  13.  
  14. <?php else: ?>
  15. </ul>
  16.  
  17. <div class="mmbr_log">
  18. <ul>
  19. <?php wp_list_pages('title_li=&depth=0'); ?>
  20. </ul>
  21. </div>
  22.  
  23. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement