• Resolved mohammadgholeh

    (@mohammadgholeh)


    Hello,

    I am customize theme and install in wordpress it work correctly but see one problem in menu super fish menu not work but view page source menu is work correctly

    my code

    <?php
    if ( has_nav_menu( ‘header-menu’ ) )
    {
    wp_nav_menu( array( ‘theme_location’ => ‘header-menu’) );
    }
    ?>

    can any one help my
    Thanks in advance

Viewing 1 replies (of 1 total)
  • Thread Starter mohammadgholeh

    (@mohammadgholeh)

    Hello

    I am sloved problem

    code in error

    <ul id=”menu-menu-2″ class=”nav navbar-nav dropdown sf-menu”>
    <?php if ( has_nav_menu( ‘header-menu’ ) )
    {
    wp_nav_menu( array( ‘theme_location’ => ‘header-menu’));
    }
    ?>


    after modification code and correct code

    <?php if ( has_nav_menu( ‘header-menu’ ) )
    {
    wp_nav_menu( array( ‘theme_location’ => ‘header-menu’,’menu_class’ => ‘nav navbar-nav dropdown sf-menu’,’menu_id’ => ‘menu-menu-2’));
    }
    ?>

    the problem wp_nav_menu() function already generated ul

    Very Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘super fish menu in theme not work’ is closed to new replies.