Info
- 2 posts
- 2 voices
- Started 2 years ago by arpowers
- Latest reply from Adam Harley
- This topic is not resolved
Profile Links
-
- Posted 2 years ago #
Hey BBPress crew!
Quick question:
What is the function or method to call a post author or topic author name, as a link to their profile?
You can view the forum alpha @ http://www.pagelines.com/forum
Notice how the profile names in statements like "Started 6 days ago by arpowers" don't have links to profiles. I would like this to link somewhere.
-
- Posted 2 years ago #
Use something like
<?php echo '<a href="' . esc_attr( get_user_profile_link( $topic->topic_poster ) ) . '">' . $topic->topic_poster_name . '</a>'?> -
You must log in to post.