Skip to content

Instantly share code, notes, and snippets.

@1gelone
1gelone / gist:09b028e17114dd3439fe130d81805b54
Created February 10, 2019 20:07 — forked from ultimatemember/gist:643cd90967e5e415378d
Custom profile tab example: showing user pages
/* add a custom tab to show user pages */
add_filter('um_profile_tabs', 'pages_tab', 1000 );
function pages_tab( $tabs ) {
$tabs['pages'] = array(
'name' => 'Pages',
'icon' => 'um-faicon-pencil',
'custom' => true
);
return $tabs;
}