Buddypress shortcode for tabs

I want to add some more tabs like photos, videos on the user profiles of my buddypress site.

Is there any shortcodes or functions to add the tabs?

Related posts

Leave a Reply

1 comment

  1. Use the following code,

    function custom_add_activity_tab() { ?>
    
      <li id="custom-tab">
        <a href="<?php echo site_url( BP_ACTIVITY_SLUG . '/' ) ?>" 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