Add this to functions.php in ur theme directory
register_nav_menus( array(
'footermenu' => __( 'menu in footer', 'twentyten' ),
) );
use the below code in template wherever u needed
<?php wp_nav_menu(array('menu_class'=>'footer_menu', 'theme_location' => 'footermenu') ); ?>
Post a Comment