Advertisement
Guest User

WordPress Elementor No-menu

a guest
Apr 3rd, 2020
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.70 KB | None | 0 0
  1. /* Codice presente in /themes/hello-elementor/function.php */
  2.  
  3. add_theme_support( 'menus' );
  4. ...
  5. function zbl_register_menu() {
  6.     register_nav_menu( 'primary', 'Primary' );
  7. }
  8. add_action( 'after_setup_theme', 'zbl_register_menu' );
  9.  
  10. /* Codice presente in /themes/hello-elementor/template-parts/header.php */
  11. <nav role="navigation">
  12.     <?php wp_nav_menu( array(
  13.         'theme_location' => 'primary',
  14.         'items_wrap' => ''
  15.     ) ); ?>
  16. </nav>
  17.  
  18. /* Link agli screenshot dell'area di amministrazione */
  19.  
  20. https://share.getcloudapp.com/KouWPoO0
  21. https://share.getcloudapp.com/OAur5AEo
  22.  
  23. /* Codice HTML generato dal server */
  24. ...
  25. <nav role="navigation">
  26.     <div class="menu-menu-1-container"></div>
  27. </nav>
  28. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement