Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: show me all your mini-plugin functions

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>

Skip to toolbar