Get author profile URL
-
Hi Greg,
We’re trying to get the author profile URL so that we can tie it to their WPDiscuz username (when we click on their username, we would end up on their profile page).
Is there a way to return an author’s permalink?
For reference, here’s a snippet from WPDiscuz using User Pro to link to their profile:
add_filter("wpdiscuz_profile_url", function ($profile_url, $user) { if ($user && class_exists('userpro_api')) { global $userpro; $profile_url = $userpro->permalink($user->ID); } return $profile_url; }, 10, 2);
Thank you,
Matt
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Get author profile URL’ is closed to new replies.