Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. function my_test_setup_nav() {
  2. global $bp;
  3. bp_core_new_nav_item( array( 'name' => __( 'test' ), 'slug' => 'test', 'parent_url' => $bp->loggedin_user->domain . $bp->slug . '/', 'parent_slug' => $bp->slug, 'screen_function' => 'my_profile_page_function_to_show_screen', 'position' => 40 ) );
  4.  
  5. bp_core_new_subnav_item( array( 'name' => __( 'Home' ), 'slug' => 'test_sub', 'parent_url' => $bp->loggedin_user->domain . $bp->slug . '/', 'parent_slug' => $bp->slug, 'parent_slug' => $bp->slug, 'screen_function' => 'my_profile_page_function_to_show_screen', 'position' => 20, 'item_css_id' => 'test_activity' ) );
  6.  
  7. function my_profile_page_function_to_show_screen() {
  8.  
  9. //add title and content here - last is to call the members plugin.php template
  10. add_action( 'bp_template_title', 'my_profile_page_function_to_show_screen_title' );
  11. add_action( 'bp_template_content', 'my_profile_page_function_to_show_screen_content' );
  12. bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
  13. }
  14. function my_profile_page_function_to_show_screen_title() {
  15. echo 'something';
  16. }
  17. function my_profile_page_function_to_show_screen_content() {
  18.  
  19. echo 'weee content';
  20.  
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement