I use wordpress and whootheme. This is now my header:
<div id="navigation">
<span class="home_li">
<a href="<?php bloginfo('url');?>">
</a>
</span>
<?php
if ( function_exists('has_nav_menu') && has_nav_menu('primary-menu') ) {
wp_nav_menu( array( 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'main-nav', 'menu_class' => 'nav fl', 'theme_location' => 'primary-menu' ) );
} else {
?>
<!-- /#nav -->
I want only add description menu as image (when you read here description in red). You can the image here:http://postimage.org/image/mzr60ohp5/ How to do it? I can add description in /wp-admin/nav-menus.php but it doesn't appear in my menu.
Thank in adavnce.