Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Add sub menu in header #102297
    vanille
    Participant

    Thanks a lot! You too ☺

    in reply to: Add sub menu in header #102261
    vanille
    Participant

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

    Thanks again!

    in reply to: Add sub menu in header #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.

    in reply to: Add sub menu in header #102200
    vanille
    Participant

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

Viewing 4 posts - 1 through 4 (of 4 total)