WordPress Developer : Updating your WordPress Theme to work with WP 3.0 Menu feature
Updating your menu to work with WP 3.0 feature is very simple. Takes pretty much 3 steps to update your theme. Step #1 Edit you functions.php file. Add the following line to it // This theme uses wp_nav_menu() add_theme_support( 'nav-menus' ); Step #2 Edit your header.php file. Add the following function to it wp_nav_menu(); Step #3 [...]