Buddypress create custom tab on my profile and add on home page [closed]

Unless you’re willing to create new components, it’ll be easier and faster to inject content into members/single/plugins

function jv_user_posts() {
  add_action( 'bp_template_content', 'jv_user_posts_content' );
  bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
}

function jv_user_posts_content() {
  echo "put content here";
}