shakil97bd

How to Register a menu in wordpress

Aug 6th, 2014
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ********How to register a menu **********
  2.  
  3. //first past this code in function.php to register menu
  4.  
  5. // register menu
  6. function erika_theme_menu() {
  7.  
  8. register_nav_menus(array(
  9. 'main_menu' => 'main menu'
  10.  
  11.  
  12. ));
  13.  
  14. }
  15. add_action('init', 'erika_theme_menu');
  16.  
  17.  
  18.  
  19. //than past this code in header.php, where you want to call menu
  20.  
  21.  
  22. <?php
  23.  
  24. wp_nav_menu(array(
  25. 'theme_location' => 'main_menu',
  26. 'menu_class' => 'sf-menu clearfix list-unstyled',
  27.  
  28. ));
  29.  
  30. ?>
Add Comment
Please, Sign In to add comment