Advertisement
androsfenollosa

WordPress - Menú en tema

Dec 3rd, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. // header.php
  2. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
  3.  
  4. // functions.php
  5. <?php
  6. register_nav_menu( 'primary', 'Menu principal de header' );
  7.  
  8. <!-- Autor: Andros Fenollosa https://programadorwebvalencia.com/ -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement