Hello,
I would like to customize the drop down menus in modularity lite theme. (Check out http://dariuszczepiel.pl )
The code is as follows:
<div id="nav">
<ul>
<li class="drop"><span>Categories</span>
<ul>
<?php wp_list_categories('orderby=name&depth=-1&title_li='); ?>
</ul>
</li>
<li class="drop"><span>Pages</span>
<ul>
<?php wp_list_pages('orderby=name&depth=-1&title_li='); ?>
</ul>
</li>
<li class="drop"><span>Subscribe</span>
<ul>
<li><a href="<?php bloginfo('rss2_url'); ?>" class="icon entries">Subscribe to content</a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" class="icon comments">Subscribe to comments</a></li>
</ul>
</li>
<li class="drop"><span>Contact</span>
<ul>
<li><a href="tel:<?php echo $phone; ?>" class="icon phone"><?php echo $phone; ?></a></li>
<li><a href="mailto:<?php echo $email; ?>" class="icon email"><?php echo $email; ?></a></li>
</ul>
</li>
</ul>
</div>
What should I add to have the additional drop down menu for:
1. Archives month by month (Click drop down and you have January 2010, February 2010 etc)
2. Links from a certain link category (So I click dropdown and only links categorized under "Superlinks" category show up ordered by name)
Would you know how to edit the code to have it ?