How to add new tab and data in WordPress Users section

I have to add new tab and new data in wordpress users. Please see the image below.

Screetshot

Read More

The points tab came from the plugin mycred but i don’t know what was used. What I think was it was done using:

$tabs = apply_filters( 'mycred_edit_profile_tabs', $tabs, $user, false );

do_action( 'mycred_edit_profile', $user, $type );

I want this code in my functions.php.

Related posts

1 comment

  1. You can add new tabs in this way:

        $tabs[] = array(
            'label'   => __( 'Profile', 'mycred' ),
            'url'     => 'some-url.php',
            # optionally some class for active tab
            'classes' => ( $current === NULL ) ? 'nav-tab nav-tab-active' : 'nav-tab'
        );
    

Comments are closed.