Forums
-
- Forum
- Posts
-
- Installation
- 28,432
- Troubleshooting
- 62,513
- Themes
- 10,430
- Plugins
- 15,338
- Requests & Feedback
- 14,964
- Showcase
- 3,256
-
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>