花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

常用phpcms標(biāo)簽整理

時間: 2020-09-16 11:10 閱讀: 作者:素材無憂網(wǎng)

文件路徑調(diào)用

{CSS_PATH}CSS文件路徑,對應(yīng)http://您的域名/statics/css/
{JS_PATH}JS文件路徑,對應(yīng)http://您的域名/statics/js/
{IMG_PATH}圖片文件路徑,對應(yīng)http://您的域名/statics/images/

模版調(diào)用

{template "模版目錄名"," 模版 文件名"}
{template "content","footer"}調(diào)用content目錄下footer模版

常用字段(其它字段可查看模型的所有字段)

catid="$catid" 當(dāng)前欄目ID
action="category" 主要欄目名稱調(diào)用等
action="lists" 主要用于列表調(diào)用等action="hits" 調(diào)用排行等action="position" 主要用于推薦位列表等posid="9" 推薦位ID="9"num="10"  數(shù)據(jù)調(diào)用數(shù)量="10"
page="$page" 調(diào)用分頁cache="3600" 緩存="3600″毫秒{$r[title]}文章標(biāo)題可增加截取{$r[url]}鏈接{$r[description]}摘要{thumb($r[thumb],200,200)}略縮圖200px*200px
{$v[inputtime])}日期
{date('Y-m-d H:i:s',$v[inputtime])}  時間格式化調(diào)用 年-月-日  時:分:秒{date('m/d',$v[inputtime])}  時間格式化調(diào)用 月/日,其它組合類推{str_cut($v[字段名],30,…)}  超出30字符后用...代替,注意一個漢字等于3字符

自定義字段{$v[自定義字段]}   主表字段加上 moreinfo="1"

{if $n%3 ==0}需要出現(xiàn)的內(nèi)容{/if}  判斷語句,文章、列表分組或每3篇文章出現(xiàn)一次

文件或欄目排序方式

order="listorder ASC" 默認(rèn)排序正序排序(欄目一般用這種,后臺可以設(shè)置手動排序,比如1,2,3文章,可以手動調(diào)用為2,3,1/3,1,2/2,1,3順序等等,以下簡稱手動)
order="listorder DESC" 默認(rèn)排序逆序排序 (文章一般用這種,后臺可以設(shè)置手動排序)
order="id ASC" 按ID正序排序 (設(shè)置后,后臺手動排序不能生效)
order="id DESC" 按ID逆序排序 (設(shè)置后,后臺手動排序不能生效)
order="inputtime ASC"按發(fā)布時間正序排序
order="inputtime DESC"按發(fā)布時間逆序排序
order="weekviews DESC"按點周擊量逆序排序

網(wǎng)頁頭部部分

{if isset($SEO['title']) && !empty($SEO['title'])}{$SEO['title']}{/if}{$SEO['site_title']} 網(wǎng)頁標(biāo)題
<meta name="keywords" content="{$SEO['keyword']}"> 網(wǎng)頁關(guān)鍵字
<meta name="description" content="{$SEO['description']}"> 網(wǎng)頁描述

首頁導(dǎo)航代碼(附帶選中欄目高亮完美解決方法,添加active類,樣式部分自行定義)

{pc:content action="category" catid="0" num="25" siteid="$siteid" order="listorder ASC"}
<ul>
<li><a href="{siteurl($siteid)}" {if !$catid}class="active"{/if}>首頁</a></li>
{loop $data $r}
<li><a href="{$r[url]}" {if !$catid}class="active"{/if}>{$r[catname]}</a></li>
{/loop}
</ul>
{/pc}

首頁導(dǎo)航代碼(欄目包函子欄目一起調(diào)用,$k和$r位置不能變)

{pc:content action="category" catid="0" num="25" siteid="$siteid" order="listorder ASC"}
<ul>
<li><a href="{siteurl($siteid)}">首頁</a></li>
{loop $data $k $r}
<li><a href="{$r[url]}">{$r[catname]}</a>
{pc:content action="category" catid="$k" num="25" siteid="$siteid" order="listorder ASC"}
<ul>
{loop $data $v}
<li><a href="{$v[url]}">{$v[catname]}</a></li>
{/loop}
</ul>
{/pc}
</li>
{/loop}
</ul>
{/pc}

頻道頁、列表頁、內(nèi)容頁當(dāng)前父欄目所有子欄目名稱調(diào)用(附選中欄目高亮完美解決方法)

{pc:content action="category" catid="$catid" num="5" siteid="$siteid" order="listorder ASC"}
{loop $data $r}
<li><a href="{$r[url]}" {if $top_parentid == $r[catid]||$catid==$r[catid]||$parentid==$r[catid]}class="active"{/if}>{$r[catname]}</a></li>
{/loop}
{/pc}

網(wǎng)站公告模塊

{pc:announce  action="lists" siteid="$siteid" num="5"}
{loop $data $r}
<a href="{APP_PATH}index.php?m=announce&c=index&a=show&aid={$r['aid']}">{$r['title']}</a>
{/loop}
{/pc}

推薦位調(diào)用(posid=""填推薦位序號,后臺可以查看)

{pc:content action="position" posid="" order="listorder DESC " num="1" cache="3600"}
{loop $data $r}
<a href="{$r[url]}">{$r[title]}</a>
{/loop}
{/pc}

基本文章調(diào)用(如需分頁請加上 page="$page" 如從第2條文件開始調(diào)用25條請加上 start="2" 或者limit="1,25--")

{pc:content action="lists" catid="$catid" siteid="$siteid" num="25" order="listorder DESC"}
{loop $data $r}
<a href="{$r[url]}">{$r[title]}</a>
{/loop}
{/pc}

友情鏈接調(diào)用

{pc:link  action="type_list" siteid="$siteid" linktype="1" order="listorder DESC" num="24" return="pic_link"}
{loop $pic_link $v}
<a href="{$v[url]}" target="_blank"><img src="{$v[logo]}" alt="{$v[name]}">{$v[name]}</a>
{/loop}
{/pc}

頻道或列表文章排行

(首頁調(diào)用需指定欄目ID要不然會空白,order="weekviews DESC"星期點擊排行,order="views DESC"總點擊排行,order="monthviews"月排行用 ,order="daythviews" 日排行,年排行排行用單詞類推)
{pc:content  action="hits" catid="$catid" siteid="$siteid" order="weekviews DESC" num="10"}
<?php $n=0;++$n; ?>
{loop $data $r}
{$n}-<a href="{$r[url]}">{$r[title]}</a>
{/loop}
{/pc}

調(diào)用 news 模型下最新文章(其實也就是按ID逆順)
{pc:get sql="SELECT * FROM `v9_news` Order by id DESC " num="10"}
{loop $data $r}
<a href="{$r[url]}">{$r[title]}</a>
{/loop}
{/pc}

文章瀏覽和評論量調(diào)用(首頁)

{pc:content action="lists" catid="1" siteid="$siteid" num="25" order="listorder DESC"}
{php $categorys = getcache('category_content_'.$siteid,'commons');}
{loop $data $v}
{php $category = $categorys[$v[catid]];}
{php $modelid = $category['modelid'];}
{php $db = pc_base::load_model('hits_model');   $_r = $db->get_one(array('hitsid'=>'c-'.$modelid.'-'.$v[id])); $views = $_r[views]; }
{php $comment_tag = pc_base::load_app_class("comment_tag", "comment"); $comment_total = $comment_tag->count(array('commentid'=>'content_'.$v[catid].'-'.$v[id].'-'.$siteid));}
<a href="{$v[url]}">{$v[title]} - 點擊量:{$views}-  評論量:{if $comment_total}{$comment_total}{else}0{/if}</a>
{/loop}
{/pc}

文章瀏覽量和評論量調(diào)用(頻道頁和列表頁調(diào)用)

{pc:content action="lists" catid="$catid" siteid="$siteid" num="25" order="listorder DESC"}
{loop $data $v}
{php $db = pc_base::load_model('hits_model'); $_r = $db->get_one(array('hitsid'=>'c-'.$modelid.'-'.$v[id])); $views = $_r[views]; }
{php $comment_tag = pc_base::load_app_class("comment_tag", "comment"); $comment_total = $comment_tag->count(array('commentid'=>'content_'.$v[catid].'-'.$v[id].'-'.$modelid));}
<a href="{$v[url]}">{$v[title]} - 點擊量:{$views}-  評論量:{if $comment_total}{$comment_total}{else}0{/if}</a>
{/loop}
{/pc}

文章瀏覽量(內(nèi)容頁調(diào)用,需引用jq庫,提供要用原生JS的方法,api返回值是用JQ選中ID為hits然后寫入數(shù)值)
點擊量:<span id="hits"></span>

<script language="JavaScript" src="{APP_PATH}api.php?op=count&id={$id}&modelid={$modelid}"></script>

文章瀏覽量 (不引用JQ庫)

{php $db = pc_base::load_model('hits_model');   $_r = $db->get_one(array('hitsid'=>'c-'.$modelid.'-'.$id)); $views = $_r[views]; }

點擊量: {$views}

<script language="JavaScript" src="{APP_PATH}api.php?op=count&id={$id}&modelid={$modelid}"></script>

文章標(biāo)題前面調(diào)用文章所在欄目名稱

{$CATEGORYS[$v[catid]][catname]} 頻道頁調(diào)用($v為調(diào)用文章時你使用的循環(huán)標(biāo)簽)
{$CATEGORYS[$catid][catname]} 列表頁調(diào)用(如所有文章都在本列表下可直

接用$catid,不全在用頻道頁的)
{$CATEGORYS[22][catname]} 調(diào)用欄目為22的欄目名稱

關(guān)鍵字調(diào)用(關(guān)鍵字格式化explode(' ',$v[keywords]);關(guān)鍵字用空格間隔,explode(',',$v[keywords]);關(guān)鍵字用逗號間隔;

{php $keywords = explode(' ',$v[keywords]);}

關(guān)鍵字:

{loop $keywords $keyword}
{$keyword}
{/loop}

單頁調(diào)用/內(nèi)容頁相關(guān)調(diào)用

{$title}標(biāo)題
{$inputtime}發(fā)布時間
{$updatetime}更新時間
{catpos($catid)} 當(dāng)前位置
{$pages}內(nèi)容分頁
{$CAT[catname]}當(dāng)前欄目
{$content}文章內(nèi)容

內(nèi)容頁組圖調(diào)用

{loop $pictureurls $pic_k $r}
<img src="{thumb($r[url]}"/>
{/loop}
上一篇:<a href="{$previous_page[url]}">{$previous_page[title]}</a>
下一篇:<a href="{$next_page[url]}">{$next_page[title]}</a>

調(diào)用評論

{if $allow_comment && module_exists('comment')}  
<iframe src="{APP_PATH}index.php?m=comment&c=index&a=init&commentid={id_encode("content_$catid",$id,$siteid)}&iframe=1" width="100%" height="100%" id="comment_iframe" frameborder="0" scrolling="no"></iframe>  
{/if}

相關(guān)文章

{pc:content action="relation" relation="$relation" id="$id" catid="$catid" num="5" keywords="$rs[keywords]"}
{if $data}
{loop $data $r}
<a href="{$r[url]}" target="_blank">{$r[title]}</a>{date('Y-m-d',$r[inputtime])}
{/loop}
{/if}
{/pc}

版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: 常用phpcms標(biāo)簽整理

標(biāo)簽:  
推薦文章
模板推薦