Advertisement
Guest User

Menus dinâmicos Wordpress

a guest
Aug 13th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. /*header.php*/
  2. <?php
  3.    wp_nav_menu(array(
  4.          'theme_location'  => 'meu-menu',
  5.          'container'       => false, // 'div' container will not be added
  6.          'menu_class'      => 'nav  nav-justified', // <ul class="nav">
  7.  
  8.    ));
  9. ?>
  10. /*functions.php*/
  11. if ( function_exists( 'register_nav_menus' ) ) {
  12.     register_nav_menus(  array(
  13.             'meu-menu'  => 'Meu Menu',
  14.             'menu_rodape'   => 'Menu Rodapé'
  15.         )
  16.     );
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement