Forums
-
- Forum
- Posts
-
- Installation
- 28,417
- Troubleshooting
- 62,426
- Themes
- 10,420
- Plugins
- 15,331
- Requests & Feedback
- 14,958
- Showcase
- 3,255
-
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>