內(nèi)容頁(yè)是每個(gè)站點(diǎn)都必須要有的模板,最常見(jiàn)的就是文章的內(nèi)容頁(yè),再者有下載內(nèi)容頁(yè),產(chǎn)品內(nèi)容頁(yè),視頻內(nèi)容頁(yè)等等,但一般不大的站點(diǎn)都一定要有其文章的內(nèi)容頁(yè),其它幾個(gè)可以沒(méi)有,在內(nèi)容頁(yè)當(dāng)中,其實(shí)是有一些固定的模板標(biāo)簽的,我們只需要調(diào)用就可以了,這些標(biāo)簽可以在 phpcms v9 里面摘出來(lái),在使用的時(shí)候直接調(diào)用很方便的,夏日博客就來(lái)總結(jié)一下內(nèi)容頁(yè) show 模板調(diào)用的標(biāo)簽。 1、頁(yè)面標(biāo)題:{$title} 2、發(fā)表時(shí)間:{$inputtime} 3、內(nèi)容來(lái)源:{$copyfrom} 4、文章內(nèi)容:{$content} 5、縮略圖地址:{$thumb} 6、組圖列表: {loop $photos $r}
<li><a href="{$r[url]}"><img src="{thumb($r[url], 75, 45, 0)}" />{/loop} 注釋?zhuān)浩渲?photos為自定義組圖字段,{$r[url]}為圖片地址,{thumb($r[url], 75, 45, 0)}為圖片縮略圖,{$r[alt]}為圖片描述。 7、欄目名稱(chēng)與欄目拼音與欄目鏈接:{$CAT[catname]} 與 {$CAT[letter]} 與 {$CAT[url]} 8、同級(jí)欄目列表: {pc:content action="category" catid="$parentid" num="12" siteid="$siteid" order="listorder ASC"}
{loop $data $r}
<li><a href="{$r[url]}">{$r[catname]}</a></li>
{/loop}
{/pc} 9、父欄目名稱(chēng)與鏈接:{$CATEGORYS[$CAT[parentid]][catname]} 與 {$CATEGORYS[$CAT[parentid]][url]} 10、一級(jí)父欄目列表: {pc:content action="category" catid="0" num="34" siteid="$siteid" order="listorder ASC"}
{loop $data $r}
<li><a href="{$r[url]}">{$r[catname]}</a></li>
{/loop}
{/pc} 11、 獲取上上級(jí)欄目名稱(chēng)與鏈接:{$CATEGORYS[$CATEGORYS[$CAT[parentid]][parentid]][catname]} 與 {$CATEGORYS[$CATEGORYS[$CAT[parentid]][parentid]][url]} 12、上一篇:{$previous_page[url]}、{$previous_page[title]},下一篇:{$next_page[url]}、{$next_page[title]}。 13、相關(guān)熱詞搜索: {loop $keywords $keyword}
<a href="{APP_PATH}index.php?m=content&c=tag&catid={$catid}&tag={urlencode($keyword)}" class="blue">{$keyword}</a>
{/loop} 14、點(diǎn)擊統(tǒng)計(jì):,注意在底部加上統(tǒng)計(jì)代碼: 15、相關(guān)文章調(diào)用:
{pc:content action="relation" relation="$relation" id="$id" catid="$catid" num="5" keywords="$rs[keywords]"}
{if $data}
<div class="related">
<h5 class="blue">延伸閱讀:</h5>
<ul class="list blue lh24 f14">
{loop $data $r}
<li>·<a href="{$r[url]}" target="_blank">{$r[title]}</a><span>({date('Y-m-d',$r[inputtime])})</span></li>
{/loop}
</ul>
</div>
{/if}
{/pc} 這些模板標(biāo)簽都可以在 phpcms v9 默認(rèn)模板里面找出來(lái),這里記錄一下方便自己在做模板時(shí)直接拿來(lái)調(diào)用,當(dāng)然我們可以舉一反三,比如列表頁(yè) list.html 模板標(biāo)簽,首頁(yè) index.html 模板標(biāo)簽,把這些標(biāo)簽都收集下來(lái),可以提高自己制作模板的效率額。
|