I was working on a new site and I really needed to add Categories to the Top Menu of my Artisteer Theme, as you know their top menu has been difficult to work with and links come out looking FUNKY! when you try to change it.
I did some researching on the Artisteer Forum and found this code, it allows you to add Categories to the top menu bar and all of the links will look & work properly…
<li>
<a href=”#” title=”Category Tab”>
<span></span>
<span></span>
<span>Category Tab</span></a>
<ul>
<?php wp_list_categories(‘show_count=0&title_li=’); ?>
</ul></li>
How to use this code…
- Login to your WP c-panel.
- Click “Editor” in Appearance.
- Click Header.php
- Look for… <ul>
<?php art_menu_items(); ?>
</ul> - And Paste the code below that code just above.
Before and After Code Changes to Your Artisteer Top Menu to add a Category link.
Your Code Before:
<div class=”art-nav”>
<div class=”l”></div>
<div class=”r”></div>
<ul class=”art-menu”>
<?php art_menu_items(); ?>
[Place the Code Here without these Brackets]
</ul> </div>
Your Code After:
<div class=”art-nav”>
<div class=”l”></div>
<div class=”r”></div>
<ul class=”art-menu”>
<?php art_menu_items(); ?>
<li class=”page_item page-item-13″>
<a href=”Category URL Here” title=”Categories”>
<span class=”l”></span>
<span class=”r”></span>
<span class=”t”>Categories</span></a>
<ul><?php wp_list_categories(‘show_count=0&title_li=’); ?>
</ul></li>
</ul> </div>
Just want to add a link? To link out to another web page, change this piece of code <a href=”Any URL Here” title=”Category Tab”>.
That’s it, You will have a fully functional Categories link in your Artisteer Top Menu.


Just a quick update;
Artisteer has now made it possible to have categories as the main top menu! They have also incorporated a “category or pages” sidebar menu which make new themes look more professional.
If you haven’t upgraded to (2.4.0.25230) yet I recommend you do.
This page was updated on 27/04/2010.
Thanks to Carmella for pointing out mistakes in the post.