Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gianghl1983/96e2c3b0ffd5b55b524a6122436f6276 to your computer and use it in GitHub Desktop.
Save gianghl1983/96e2c3b0ffd5b55b524a6122436f6276 to your computer and use it in GitHub Desktop.
<?php
add_filter("um_profile_edit_menu_items","um_custom_profile_edit_menu_items",10,2);
function um_custom_profile_edit_menu_items( $items, $profile_id ){
$items[ ] = array(
"my_custom_menu_item" => '<a href="http://example.com/" class="real_url">'.__('My Custom Menu Item','ultimatemember').'</a>',
);
return $items;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment