Forums

[resolved] Custom Link in Menu not Showing (1 post)

  1. sales@4bco.com
    Member
    Posted 1 year ago #

    Hey everyone. I have a theme with two custom menus. One for the top and one for the bottom. Everything works on the menu except, the custom link does not show up.

    Here's the site. It should have a contact us link in both menus. This would link to the email address.

    Here's the code in the functions.php file.

    <?php
    //Add Menus to theme
    add_action( 'init', 'register_my_menus' );
    
    function register_my_menus() {
    register_nav_menus(
    array(
    'MenuA' => __( 'MenuA' ),
    'MenuB' => __( 'MenuB' )
    ));
    }
    
    ?>

    Here's the code in the header.php file.

    <div id="navA">
    			<?php wp_nav_menu( array( 'theme_location' => 'MenuA', 'menu_class' => 'menuA' ) ); ?>
            </div>

    Hope someone can help solve this mystery.

Topic Closed

This topic has been closed to new replies.

About this Topic