Hi,
I am using jQuery Superfish Menu inside my WordPress theme, where I have the following setup inside my sidebar.php file:
<div id="sidebar">
<ul id="themenu" class="sf-menu sf-vertical">
<li><a href="index.html" class="topm currentMenu nosub">Home</a></li>
<li><a href="about-us.html" class="topm nosub">About Us</a></li>
<li>
<a class="sf-with-ul topm" href="#">Instruments</a>
<ul class="bullet">
<li><a href="guitars.html">Guitars</a></li>
<li><a href="drums.html">Drums</a></li>
</ul>
</li>
</ul>
</div>
My question is, can I transform this code above to use some wp php function such as wp_list_pages() for both top level menu items as well as the sub-menu items under the parent menu item of "Instruments" ?
Just want to know whether there is a WordPress way of doing the Superfish menu and bringing in the correct a href values alongside each list item?
Thanks.