主題: 如何只列出某個分類的文章呢? 作者: rainlan 於 五月 16, 2005, 09:38:51 上午 想把不同的分類文章列在不同的區域,
不曉得程式碼該怎麼寫... 這裡有之前請mark做的0.32版的程式碼 嘗試放在1.0中,當然不行啊... <p> {assign var=stickyposts value=$stickyposts->getStickyPosts('21')} {foreach from=$stickyposts item=stickypost} <div class="Newstitle"> <img src="templates/{$blogtemplate}/bullets/newstitle.gif" border=0 align="absmiddle"> <a title="{$stickypost->getText()|truncate:150:"..."|strip_tags|escape}" style="color: blue;" href="{$url->postLink($stickypost)}">{$stickypost->getTopic()}</a></li> {assign var="stickypostDate" value=$stickypost->getDateObject()} {assign var="stickypostOwner" value=$stickypost->getUserInfo()} {assign var="stickypostCategory" value=$stickypost->getCategory()} <br/><span class="date"><a href="{$url->postCategoryLink($stickypost)}">{$stickypostCategory->getName()}</a> | {$locale->formatDate($stickypostDate,"%Y-%M-%d")} <a href="{$url->postPermalink($stickypost)}"><img src="templates/{$blogtemplate}/bulledaytts/ncomment.gif" border=0 align="baseline" /> ({$stickypost->getTotalComments()})</a> <a href="{$url->postTrackbackStatsLink($stickypost)}"><img src="templates/{$blogtemplate}/bullets/ntrackback.gif" border=0 align="baseline"> ({$stickypost->getNumTrackbacks()})</a></span> </div> {/foreach} </p> 謝謝... 主題: 如何只列出某個分類的文章呢? 作者: lss 於 五月 16, 2005, 12:09:01 下午 hi rainlan:
stickyposts plugin 還沒 port 到 pLog 1.0 ,我目前正在施工,努力 debug 中。 1.0 的 plugin 比 0.32 架構複雜,這也是我第一個 1.0 plugin 工程,會多花點時間,請期待 (H) 主題: 原來是這樣 作者: rainlan 於 五月 16, 2005, 12:18:32 下午 原來是這樣啊...
辛苦你們了... |