Add own profile tab with own content
Hi there,
Is it possible to create a own tab with own content and own link name in the profile view?
Would be awesome 🙂
Something like this:
function add_profile_tab($menus){
$slug = 'details';
$content = anyfunction();
$menus[] = array( 'slug' => $slug, 'title' => 'Any title', 'content' => $content, 'order' => 4, 'public' => false);
return $menus;
}
add_filter('ap_user_menu', 'add_profile_tab');
What about a order? May give the current menus values like 10, 20, 30, 40… So the admin can add 10 menu items between it.