下載外掛安裝後,進行如下的設定:


一般使用者要在 links.template 中想要的位置加入如下的程式碼
{if !empty($topreadposts)}
{if $topreadposts->isEnabled()}
<DIV class=sidetitle>熱門文章</DIV>
<DIV class=side>
{assign var=readposts value=$topreadposts->getTopReadPosts()}
{foreach from=$readposts item=readpost}
<DIV class=sidebody>
<a href="{$url->postLink($readpost)}">{$readpost->getTopic()} ({$readpost->getNumReads()})</a>
</DIV>
{/foreach}
</DIV>
{/if}
{/if}