Forums
-
- Forum
- Posts
-
- Installation
- 28,499
- Troubleshooting
- 62,634
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,972
- Showcase
- 3,257
-
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>