Before you can start this tutorial, you’ll need to follow the tutorial on how to add the WordPress 3 menu to Thesis. Once you finish that tutorial, you will have the following in your custom_functions.php: add_action(‘init’,'register_menu’); remove_action(‘thesis_hook_before_header’,'thesis_nav_menu’); add_action(‘thesis_hook_before_header’,'wordpress_menu_support’); function register_menu() { register_nav_menus( array( ‘primary’=>’Primary Menu’ )); } function wordpress_menu_support() { if (function_exists(‘wp_nav_menu’)) wp_nav_menu(‘theme_location=primary&fallback_cb=thesis_nav_menu’); else thesis_nav_menu(); [...]