• Resolved yazooda

    (@yazooda)


    Guys, I hired someone to add a menu to my page wecanboost.com below pages bar. While he is explaining and after creating menu I couldn’t find “Secondary Menu” check box like although we use the same theme “Hiero”!

    Any helps?

Viewing 2 replies - 1 through 2 (of 2 total)
  • #yazooda If you don’t found any secondary menu option in your menu then trying adding it manually as it is removed in some child themes, may be your theme is doing the same thing.

    Standard way of adding a secondary menu to a theme is as follows.

    Add the function to create a new menu opening file functions.php and registering it:

    register_nav_menus( array(
        'primary' => __( 'Primary Menu', 'yourtheme'),
        'secondary' => __( 'Secondary Menu', 'yourtheme' ),
     ) );

    This brought up a 2nd menu in the Theme Menu options.

    Next, add the code to the desired place on your theme file. In this case, it would be added to the footer.

    <nav>
        <?php
            wp_nav_menu( array('container_class' => 'menu-footer',
            'theme_location' => 'secondary') ); ?>
    </nav>
    Thread Starter yazooda

    (@yazooda)

    YOU ARE AMAZING.

    THANKS.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I don't find Secondary Menu check box?’ is closed to new replies.