如果要顯示 '頂置:' 在頂置主題的前面可以用這個, 如果是封鎖的主題會顯示 '封鎖:'
如果是頂置也是封鎖的主題就只會顯示頂置而已.
In MessageIndex.template.php:
', $topic['first_post']['link'];
Replace with:
<span style="', $topic['is_sticky'] ? 'font-weight: bold;' : '', $topic['is_locked'] ? 'font-style: italic;' : '', '">
', $topic['is_sticky'] ? '頂置: ' : ($topic['is_locked'] ? '封鎖: ' : ''), ' ', $topic['first_post']['link'], '
</span>';