How to link Author Box with author's profile page? – UserPro Forums https://forum.userproplugin.com/forums/topic/how-to-link-author-box-with-authors-profile-page/feed/ Sun, 05 May 2024 00:30:51 +0000 https://bbpress.org/?v=2.6.2 en-US https://forum.userproplugin.com/forums/topic/how-to-link-author-box-with-authors-profile-page/#post-37742 <![CDATA[How to link Author Box with author's profile page?]]> https://forum.userproplugin.com/forums/topic/how-to-link-author-box-with-authors-profile-page/#post-37742 Sat, 17 May 2014 17:49:25 +0000 Andrzej Is there a way to link author’s avatar (in author box) with his profile page?

]]>
https://forum.userproplugin.com/forums/topic/how-to-link-author-box-with-authors-profile-page/#post-37772 <![CDATA[Reply To: How to link Author Box with author's profile page?]]> https://forum.userproplugin.com/forums/topic/how-to-link-author-box-with-authors-profile-page/#post-37772 Sun, 18 May 2014 10:20:49 +0000 admin From the userpro API, you can display author profile link using this simple php:

$url = $userpro->permalink( get_the_author_meta(‘ID’) );

Now you can do something like <a href="<?php echo $url; ?>">Author Profile</a>

]]>
https://forum.userproplugin.com/forums/topic/how-to-link-author-box-with-authors-profile-page/#post-39368 <![CDATA[Reply To: How to link Author Box with author's profile page?]]> https://forum.userproplugin.com/forums/topic/how-to-link-author-box-with-authors-profile-page/#post-39368 Thu, 29 May 2014 14:57:19 +0000 tronkybs In this code, what should i add to link the avatar to the user profile (author)?

$user_id = get_the_author_meta(‘ID’);
echo get_avatar($user_id, $size=50);
echo userpro_show_badges($user_id, $inline=true);

]]>