Just trying out Thematic, is really great so far. I'd like to add a more useful id to the li's in the access menu - I need the page title in there for CSS reasons. I've used the following (courtesy of Devin) to utilise the WP3.0 menus:
function remove_thematic_actions() {
remove_action('thematic_header','thematic_access',9);
}
add_action('init','remove_thematic_actions');
if ( function_exists( 'add_theme_support' ) ) {
// This theme uses wp_nav_menu()
add_theme_support( 'nav-menus' );
}
function childtheme_menu() { ?>
<div id="access">
<?php wp_nav_menu( 'sort_column=menu_order&container_class=menu&menu_class=sf-menu' ); ?>
</div>
<!-- #access -->
<?php }
add_action('thematic_header','childtheme_menu',9);
There's doesn't appearo to be any params passed into wp_nav_menu that will help me to do what I want. Any ideas? I'd prefer to avoid hard-coding the menu's if possible.
Apologies if this has been asked before, I couldn't find an answer