Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function custom_setup_nav() {
  2. global $bp;
  3.  
  4. bp_core_new_nav_item( array(
  5. 'name' => __( 'About', 'buddypress' ),
  6. 'slug' => 'about',
  7. 'position' => 30,
  8. 'screen_function' => 'about_page'
  9. ) );
  10. }
  11.  
  12. add_action( 'bp_setup_nav', 'custom_setup_nav' );
  13.  
  14. function about_page() {
  15. bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/about' ) );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement