pbootcms網站常用的參數標簽匯總、以及操作過程中的一些bug問題解決方法,pboot網站二開,以下龍騰飛網絡科技-小吳在建站實操中筆記記錄,pbootcms建站教程/pb網站建設教程 保存使用非常方便:
【PB建站教程】pboot網站頁面常用調用標簽-[詳情頁/tag頁/搜索頁]
——【詳情頁】
{pboot:position separator=>> indextext=首頁} {content:title} {content:date style=Y-m-d} //更新日期 {content:visits //文章訪問量 {content:source} //文章來源 {content:author} //文章作者 <a href="{sort:link}" target="_blank">{sort:name}</a> //欄目名稱及鏈接 {content:content} //文章內容 {pboot:tags id={content:id}} //文章tag調用 id={content:id}:對應文章的id調用 <a href="[tags:link]">[tags:text]</a> {/pboot:tags} {content:precontent} //上一篇 {content:nextcontent} //下一篇 {pboot:pagetitle} //表示頁面標題 {pboot:sitetitle} // 表示站點標題 {pboot:sitesubtitle} // 表示副標題 {content:title} //表示文章標題 {content:subtitle} //表示文章副標題
——【tag頁面】
<title>搜素:{$get.tags} -{pboot:sitetitle}</title> //{$get.tags}:當前進入頁面的tag標簽詞 <meta name="Keywords" content="{pboot:sitekeywords}" /> <meta name="Description" content="{pboot:sitedescription}" />
——【tag標簽調用】
1、全站tag調用
{pboot:tags}<a href="[tags:link]">[tags:text]</a>{/pboot:tags}
2、內容頁
{pboot:tags id={content:id}} <a href="[tags:link]"> [tags:text] </a> {/pboot:tags}
3、tags.html調用列表
{pboot:list num=10 scode=* page=1}
4、當前tag名稱
{$get.tag}
——【tag文章列表頁】——調用展示全部標簽的文章
——常用標簽
{pboot:list scode=* } {pboot:tags order=date } [list:link] [list:title] [list:ico] [list:description function="cn_substr(@me,300)"/]... ——代入場景 <a href="{sort:link}" target="_blank">{sort:name}</a> //文章對應欄目名稱 【<a href="[tags:link]">[tags:text]</a>】 //文章tag標簽 {/pboot:tags} {/pboot:list}
——【tag標簽匯總頁】
{pboot:tags num='1000' } <a href="[tags:link]" target="_blank"> [tags:text] </a> {/pboot:tags}
——【搜索頁面】
<title>"{$get.keyword}"搜索結果_{pboot:sitetitle}</title> //{$get.keyword}:搜索關鍵詞 <meta name="Keywords" content="{pboot:sitekeywords}" /> <meta name="Description" content="{pboot:sitedescription}" />
——【搜索頁面當前位置】
<a href="{pboot:sitedomain}/">首頁</a> >> 搜索頁</span>搜索 <strong>{$get.keyword}</strong> 的結果
——【搜索列表】
{pboot:search scode=* order=date page=0} [search:link //搜索文章鏈接 [search:title function=' ( strlen("@me")>150 ? cn_substr("@me",150)."" : "@me" ) ' ] //搜索文章標題 <a href="[nav:link]" target="_blank">[nav:name]</a> //搜索文章對應欄目名稱 [search:ico] //搜索文章圖片 [search:description function="cn_substr(@me,300)"/]... //搜索文章導讀/摘要 [search:date] //搜索文章發布日期 {/pboot:search}