views:

21

answers:

1

Hi There,

I currently have a nav menu that is built with the following,

<?php 
            if(!is_user_logged_in()) {
                wp_page_menu('show_home=1&exclude=214&exclude_tree=80');
            } else {
                wp_page_menu('show_home=1&exclude=214');
            }
        ?>

My problem is that I have some buddpress pages that I need add to parent that is created by wordpress, basically I have a parent that is called 'Member Content'

That Member Content has children like, 'Surveys', 'Documents' but I also want Forums, Groups, Members from my buddypress install to be children of the member content also.

A: 
Tom