ADDED some experimental code. A child theme running under WordPress 3.0 will use wp_page_menu() by default.
To switch the menu to wp_nav_menu() use the following PHP snippet in your child theme’s functions.php:
function change_menu_type() {
return 'wp_nav_menu';
}
add_filter('thematic_menu_type', 'change_menu_type');
2 Comments
If i use this code all calls to wp_page_menu() will be replaced by calls to wp_nav_menu or do i have to remove the calls to wp_page_menu() in the child theme?
Regarding my last comment i figured out that thematic replaces one menu with the other, but i was also having a problem with the wp_nav_menu not been shown in the earlymorning child theme inside the branding div. I fixed it by changing the add_action priority argument from a 9 to a 6 at line 455 of the header-extension.php file, now it works as it should.
Hope this info is helpfull.