Hi,
I thought I post this here in case someone needs this - or maybe someone has a better solution for this.
I want a menu with certain pages and categories as an item. This forum helped me out and I stiched some code together. I'd like to give credits but actually I dont know where I got it from. I use the Power Blog Theme as a child-theme and added this to solve my problem:
// First we need to remove the action creating the menu
function remove_access($content) {
remove_action('thematic_header','thematic_access',9);
}
add_action('init', 'remove_access');
// Now we need to rebuild it
function childtheme_access() { ?>
<div id="access">
<div class="menu">
<ul class="sf-menu"> <?php wp_list_pages('include=2,340,342,344,346,348&sort_column=menu_order&title_li='); ?>
<?php wp_list_categories('include=21,1&title_li='); ?>
</ul></div></div>
<?php }
add_action('thematic_header','childtheme_access',9);