I’m using a custom menu in my WP installation and want to include a ‘Edit Profile’ that links to a user’s bbpress edit profile page.
I’m using the following function:
bbp_get_user_profile_edit_link()
Which looks like this in the sidebar:
<a href="<?php bbp_get_user_profile_edit_link(); ?>" class="button">"><?php _e('Edit Profile','mytheme')?></a>
But it doesn’t work. Any suggestions on the above?