Info
- 2 posts
- 2 voices
- Started 5 years ago by nolageek
- Latest reply from Michael Adams (mdawaffe)
- This topic is not a support question
Is there a list of template tags anywhere?
-
- Posted 5 years ago #
I see in the front_page.php there is <?php topic_last_poster(); ?> which will show the last poster for that topic. I'd like the username to link to that person's profile.
I've tried using combinations of <?php topic_last_poster_id(); ?> <?php topic_last_poster_link(); ?> <?php topic_last_poster_profile(); ?> <?php topic_last_poster(); ?> and nothing seems to be valid.
Is there a way I can do this?
-
- Posted 5 years ago #
No easily.
Try:
<a href="<?php user_profile_link( $topic->topic_last_poster ); ?>" title="User Profile"><?php topic_last_poster(); ?></a> -
You must log in to post.