Buddypress shortcode for tabs [closed]

Use the following code,

function custom_add_activity_tab() { ?>

  <li id="custom-tab">
    <a href="https://wordpress.stackexchange.com/questions/60691/<?php echo site_url( BP_ACTIVITY_SLUG ."https://wordpress.stackexchange.com/" ) ?>" title="<?php _e( 'Tab.', 'buddypress' ) ?>">
        <?php printf( __( 'tab' , 'buddypress' ) ); ?>
    </a>
  </li>

<?php }
add_action( 'bp_activity_type_tabs', 'custom_add_activity_tab' );

Check it, Will work better