Last active
December 22, 2015 18:09
-
-
Save krogsgard/6510823 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_shortcode( 'blogle-forum-profile-link', 'blogle_forum_profile_link_shortcode' ); | |
function blogle_forum_profile_link_shortcode() { | |
$link = NULL; | |
if ( is_user_logged_in() ) { | |
$link = '<a href="' . bbp_get_user_profile_url( bbp_get_current_user_id() ) . '" class="blogle-profile-link">My Profile</a>'; | |
} | |
return $link; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I signed up to github just to thank you for this. Saved me time! Thank you!
(also why this isn't part of bbpress core I have no idea)