[Resolved] New Page within Buddypress Profile
-
Hi Guys,
I like to create a new page within the buddypress profile menu. This new Page should contain an shortcode to display some informations.
How can I create an Menu-Item wich shows a page where this shortcode is included?
I’ve got shown the link with the following code:
function my_setup_nav() { global $bp; bp_core_new_nav_item( array( 'name' => __( 'My Page', 'buddypress' ), 'slug' => 'my-page', 'position' => 200, ) ); } add_action( 'bp_setup_nav', 'my_setup_nav' );
How can I now get here an page linked?
Thanks and regards
Pare
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Resolved] New Page within Buddypress Profile’ is closed to new replies.