Add 2nd Navigation Menu

Discussion in 'GeoCraft WordPress Theme' started by krisspao, Jun 28, 2013.

  1. krisspao

    krisspao Guest

    Joined:
    Jun 14, 2013
    Messages:
    28
    Likes Received:
    2
    Hi,

    I can see the "Geocraft Theme" have only one Navigation Menu.
    Is there a way to have a Second Nav Menu?
    I would like to add it a the top of the page where are located the login... i hidded already?
    Thanks in Advance for your help

    Kriss
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Kriss,

    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
     
  3. kentoliver

    kentoliver Active Member

    Joined:
    Jan 3, 2013
    Messages:
    238
    Likes Received:
    41
    Hey Kriss,

    add this to your functions file:
    PHP:
    // Regeristing new Menu
    register_nav_menus( array(
    'secondary' => __'Secondary Menu''CHILDTHEMENAME'),
    ) );
    Then add this to your theme, where you want the navigation to appear:
    PHP:
        <?php // footer menu
                
    wp_nav_menu( array('container_class' => 'menu-footer',
    'theme_location' => 'secondary' ) ); ?>  
    All the best.
     
    krisspao likes this.
  4. krisspao

    krisspao Guest

    Joined:
    Jun 14, 2013
    Messages:
    28
    Likes Received:
    2
    @kentoliver : Thanks for the help...
     
  5. kentoliver

    kentoliver Active Member

    Joined:
    Jan 3, 2013
    Messages:
    238
    Likes Received:
    41
    No problemo,

    hope it all worked out.
     
    krisspao likes this.

Share This Page