Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Hyperlink “Last Poster” from Latest Discussions to THEIR Profile Page


kickerman360
Member

@kickerman360

<td class="num">
<?php
function gs_get_topic_last_poster_profile_link() {
global $topic;
if ($topic)
return sprintf('<a href="%s">%s</a>', get_user_profile_link($topic->topic_last_poster), get_topic_last_poster($topic->topic_id));
return false;
}
?>
</td>

Skip to toolbar