Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #102196
    vanille
    Participant

    Hello!
    Clean Jounal is awesome!!

    I’d like to add sub menu in header.
    How to do customize?

    #102199
    Mahesh
    Keymaster

    @vanille: Please check the following links:
    https://codex.wordpress.org/Appearance_Menus_Screen
    and this video too:
    https://www.youtube.com/watch?v=bxphw24ZvHY
    Hope this helps.

    Regards,
    Mahesh

    #102200
    vanille
    Participant

    Thank you so much for your advice!
    I’ll check it soon!

    #102245
    vanille
    Participant

    Sorry, “Sub menu”was mistake.

    I’d like to add “utility menu” in top right of header area.

    I usually add this in function.php
    —————————-
    register_nav_menus(
    array(
    ‘place_global’ => ‘global’,
    ‘place_utility’ => ‘utility’,
    )
    );
    ——————
    I could do it.

    and add this in header.php
    ——————————
    <?php
    wp_nav_menu(array(
    ‘container’ => ‘nav’,
    ‘container_id’ => ‘utility-nav’,
    ‘theme_location’ => ‘place_utility’,
    ));
    ?>
    ——————————–

    I couldn’t add it in header.php.

    Would you suggest about it again?

    Thanks.

    #102259
    Mahesh
    Keymaster

    @vanille: There is already Header Top Menu options in the theme. Go to Dashboard=> Appearance=> Menus=> Menu Locations and select your desired menu in Header Top Menu option. If you don’t have created a menu, go to Dashboard=> Appearance=> Menu and create one.
    Hope this helps.

    Regards,
    Mahesh

    #102261
    vanille
    Participant

    I really appreciate your kindness.
    Now I understand it and made it!

    Thanks again!

    #102292
    Mahesh
    Keymaster

    @vanille: I’m glad to know that. Have a nice day!

    Regards,
    Mahesh

    #102297
    vanille
    Participant

    Thanks a lot! You too ☺

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Add sub menu in header’ is closed to new replies.