Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. iv class="navCtrl">
  2. <ul class="nav navbar-nav">
  3. <li class="active"><a href="#">Home</a></li>
  4. <li><a href="#">About</a></li>
  5. <li><a href="#">Blog</a></li>
  6. <li><a href="#">Contact</a></li>
  7. </ul>
  8. </div>
  9.  
  10. wp_nav_menu(
  11. array( 'theme_location' => 'header-menu',
  12. 'menu_class' => 'navCtrl',
  13. 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>'
  14. )
  15. );
  16.  
  17. <div class="navCtrl">
  18. <ul>
  19. <li class="page_item page-item-11 current_page_item">
  20. <a href="http://localhost/wordpress/?page_id=11">about</a>
  21. </li>
  22. <li class="page_item page-item-13">
  23. <a href="http://localhost/wordpress/?page_id=13">blog</a>
  24. </li>
  25. <li class="page_item page-item-15">
  26. <a href="http://localhost/wordpress/?page_id=15">contact</a>
  27. </li>
  28. <li class="page_item page-item-8">
  29. <a href="http://localhost/wordpress/?page_id=8">home</a>
  30. </li>
  31. </ul>
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement