Ali Zia
Ali Zia

Reputation: 3875

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

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.

Upvotes: 2

Views: 588

Answers (1)

user3041764
user3041764

Reputation: 849

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'
    );

Upvotes: 1

Related Questions