Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So im trying to convert a html theme into a wordpress template and having some trouble replicating the navigation using the wp_nav_menu function. Would it be possible to replicate the following navigation with this function? Any help would be greatly appreciated. An Example of the way the template's menu is structured is below

 <!-- menu -->
        <nav id = "main-nav-menu">
          <ul class="sf-menu">
            <li><a href="index.html">Home</a>
              <ul>
                <li><a href="index.html">Home 1</a></li>
                <li><a href="index2.html">Home 2</a></li>
                <li><a href="index3.html">Home 3</a></li>
                <li><a href="#">Full width</a>
                  <ul>
                    <li><a href="../fullwidth/orange/index.html">Orange</a></li>
                    <li><a href="../fullwidth/red/index.html">Red</a></li>
                    <li><a href="../fullwidth/green/index.html">Green</a></li>
                    <li><a href="../fullwidth/blue/index.html">Blue</a></li>
                    <li><a href="../fullwidth/gray/index.html">Gray</a></li>
                  </ul>
                </li>
                <li><a href="#">Fixed width</a>
                  <ul>
                    <li><a href="../orange/index.html">Orange</a></li>
                    <li><a href="../red/index.html">Red</a></li>
                    <li><a href="../green/index.html">Green</a></li>
                    <li><a href="index.html">Blue</a></li>
                    <li><a href="../gray/index.html">Gray</a></li>
                  </ul>
                </li>
                <li><a href="#">Five Color option</a>
                  <ul>
                    <li><a href="../orange/index.html">Orange</a></li>
                    <li><a href="../red/index.html">Red</a></li>
                    <li><a href="../green/index.html">Green</a></li>
                    <li><a href="index.html">Blue</a></li>
                    <li><a href="../gray/index.html">Gray</a></li>
                  </ul>
                </li>
              </ul>
            </li>
            <li class="active"><a href="about.html">About</a>
              <ul>
                <li><a href="about.html">About</a></li>
                <li><a href="services.html">Services</a></li>
                <li><a href="features.html">Features</a></li>
                <li><a href="team.html">Team</a></li>
                <li><a href="product-price.html">Product Price</a></li>
                <li><a href="left-sidebar.html">Left Sidebar</a></li>
                <li><a href="right-sidebar.html">Right Sidebar</a></li>
                <li><a href="blog.html">Blog</a></li>
                <li><a href="blog-single.html">Blog Details</a></li>
                <li><a href="portfolio3.html">Portfolio</a>
                  <ul>
                    <li><a href="portfolio2.html">Two Column</a></li>
                    <li><a href="portfolio3.html">Three Column</a></li>
                    <li><a href="portfolio4.html">Four Column</a></li>
                    <li><a href="portfolio-single.html">Portfolio Single</a></li>
                  </ul>
                </li>
                <li><a href="faq.html">FAQs</a></li>
                <li><a href="sitemap.html">Site Map</a></li>
                <li><a href="404-page.html">404 Page</a></li>
              </ul>
            </li>
            <li><a href="elements.html">Elements</a>
              <ul>
                <li><a href="elements.html">Elements</a></li>
                <li><a href="price.html">Price</a></li>
                <li><a href="headings.html">Headings</a></li>
                <li><a href="column.html">Columns Layout</a></li>
              </ul>
            </li>
            <li><a href="blog.html">Blog</a>
              <ul>
                <li><a href="blog.html">Blog</a></li>
                <li><a href="blog-single.html">Blog Details</a></li>
              </ul>
            </li>
            <li><a href="portfolio3.html">Portfolio</a>
              <ul>
                <li><a href="portfolio2.html">Two Column</a></li>
                <li><a href="portfolio3.html">Three Column</a></li>
                <li><a href="portfolio4.html">Four Column</a></li>
                <li><a href="portfolio-single.html">Portfolio Single</a></li>
              </ul>
            </li>
            <li><a href="contact.html">Contact</a></li>
          </ul>
        </nav>
        <!-- end menu -->
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.