Forums
-
- Forum
- Posts
-
- Installation
- 28,532
- Troubleshooting
- 62,748
- Themes
- 10,443
- Plugins
- 15,383
- Requests & Feedback
- 14,983
- Showcase
- 3,258
-
Here’s a function that changes the last poster to a link to the last post:
function geek_addlatest_link()
{
global $topic;
echo ‘ topic_id) . ‘”>’.get_topic_last_poster($topic->topic_id).’‘;
}
Just needs to be added into a theme like this:
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php geek_addlatest_link(); ?></td>