LifeType 中文開發論壇

開發 => 模版設計 => 主題作者是: 不好意思的初學者 於 三月 18, 2005, 03:55:40 下午



主題: 請問如何更改 summary.php的外觀
作者: 不好意思的初學者三月 18, 2005, 03:55:40 下午
請問一下,

要如何才能更改 summary.php 所呈現的外觀呢?

如我不要   "最新文章" & "最多人看的文章"  等這些區塊出現

要從哪裡修改呢??



PS> 我用 forntpage 開啟 summary.php  竟然是一片空白   :-|


主題: 請問如何更改 summary.php的外觀
作者: james三月 19, 2005, 07:11:59 上午
你可以用純文字編輯器打開
plog/template/summary/index.template
把下面的東西移除.

最新文章
程式碼:
{include file="summary/recent.template"}



最多人閱讀文章
程式碼:
    <h4>{$locale->tr("summary_most_commented_articles")}
    <a href="{$url->getRssUrl()}?summary=1&amp;type=mostcommented"><img src="{$url->getUrl("/imgs/rss_logo_small.gif")}" alt="RSS" /></a>
</h4>
    <ul class="itemList">
    {foreach from=$commentedPosts item=post}
   {assign var="blog" value=$post->getBlogInfo()}
   {assign var="url" value=$blog->getBlogRequestGenerator()}
        <li class="item">
            <a href="{$url->postPermalink($post)}">{$post->getTopic()|strip_tags}</a> ({$post->getTotalComments()})<br />
        </li>
    {/foreach}
    </ul>


其它區塊則以此類推喔 :-)
plog的程式碼和版面是分開的,因此如果你要修改版面的話,
必須要到template目錄下找尋相關的檔案修改。
因我沒使用Frontpage,所以不曉得用fp開*.template的檔案會不會有問題.
建議你使用其它的文字類別編輯器來進行修改動作,才比較不會有問題。

回應的有點簡單,如果有其它問題或建議歡迎再次發問喔  :-)

James.


主題: 請問如何更改 summary.php的外觀
作者: markwu三月 19, 2005, 09:59:18 上午
如果你喜歡用 WYSIWYG 的 html editor, 建議試試 dreamweaver,雖然我不熟,但 reic 覺得很好用,而且還有 smarty extension,你可以得方便在 dreamweaver 下編輯 smarty tag。

Mark