Like the submenus that Artisteer generates within the temaplate you made but you cannot find them anywhere when you installed the template on your wordpress websites.
I am talking about the Categories and Archives sub menus off course.
Well, it is actually very simple. Just put this piece of code in your template header.php
Find the next lines in Header.php:
<ul class="art-menu">
<?php art_menu_items(); ?>
</ul>
Delete them.
Then put these lines back where the other lines stood.
<ul class="art-menu">
<?php art_menu_items(); ?>
<?php wp_list_categories(‘title_li=</li><li><a><span class="l"></span><span class="r"></span><span class="t">Categories</span></a>’); ?>
<li><a><span class="l"></span><span class="r"></span><span class="t">Archivesf</span></a><ul>
<?php wp_get_archives(‘type=yearly’); ?>
</ul></li>
</ul>
Save, ready !





Does not work for me …
You might wanna tell what does not work. Do you get an error, doesn’t it show. Did you expect something else ?
Hi,
Does not work for me too.
Get error:
Parse error: parse error in C:\xampp\htdocs\wp\wp-content\themes\mytheme\header.php on line 41
39:
40:
41: <?php wp_list_categories(‘title_li=
Categories’); ?>
Archives
Try to remove and re-add the ‘ before title and after Categories , this ‘title_li=Categories’ does not looks like ‘title_li=Categories’
Thank, this work great for me!!!