• Hi,

    tried to insert footer menu.
    but it won’t display correctly. πŸ™

    what I did so far:
    * created child.
    * added:

    function register_my_menu() {
    register_nav_menu('footer-menu',__( 'Footer Menu' ));
    }
    add_action( 'init', 'register_my_menu' );

    to functions.php
    * added

    <!--BEGIN .content-bottom-->
      <div class="content-bottom">
    <?php wp_nav_menu( array( 'theme_location' => 'footer-menu' ) ); ?>
            <!--END .content-bottom-->
      </div>

    to footer.php
    *created Footer Menu in WP and assigned to footer

    what I get is only text links.

    when deassigning footer menu I’ll get a white block with links.
    but that is not what I tried to get. πŸ™‚

    Any idea?

    Many thanks.

    Tigger

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Theme: EvoLve] how to insert bottom/footer menu’ is closed to new replies.