phpcms タグの使用法: 1. 指定した catid のカラム名とリンクを表示します; 2. サブカラムを呼び出します; 3. 指定したカラムの下のニュースを取得します; 4. ページング機能を実装します。
phpcms タグの使用:
1. 指定した catid のカラム名とリンクを表示します。 {$CATEGORYS[25]['catname']} {$CATEGORYS[25]['url']}
親列 ID を取得、親列名を取得 $CATEGORY[ $catid][parentid]}
親列名: {$CATEGORYS[$CAT[parentid]][catname]}
タイトル制限を削除した後に表示される省略記号
{str_cut($r[title],36,'...')}
フォーマット時刻 2011-05-06 11:22:33
{date('Y-m-d H:i:s',$r[inputtime])} {date('Y年m月d日',$r[inputtime])}
2. サブ列 を呼び出します (列のホームページ テンプレートで使用する必要があり、リスト ページでも使用できます)
{pc:content action="category" catid="$catid" num="25" siteid="$siteid" order="listorder ASC"} {loop $data $r} <a href="{$r[url]}">{$r[catname]}</a> | {/loop}{/pc}
3. 指定した列のニュースを取得します
(1) ここで moreinfo="1" は、メインと
{pc:content action="lists" catid="$catid" num="25" order="id DESC" return="info" moreinfo="1"} {loop $info $r} 更新日期:{date('Y年m月d日',$r[updatetime])} 作者:{$r[username]} 来源:{$r[copyfrom]} 点击率{$r[readpoint]} 网址{$r[url]} 文章标题 {$r['title']} 标题样式{title_style($v[style])} {/loop} {/pc} <p>=====================</p
( 2) SQL ユニバーサル ステートメントは、指定されたコンテンツをより簡単に呼び出すことができます。
{pc:get sql="select * from v9_news as a,v9_news_data as b where a.id=b.id and catid=34 and status=99 order by a.id desc"} {loop $data $v} <li><a href="{$v['url']}" target="_blank"><img src="{$v[thumb]}" width="146" height="117" /></a></li> {/loop} {/pc} {pc:get sql="select * from v9_news where catid=10 and status=99 order by updatetime desc" num="5" start="23"} {loop $data $rs} <a href="{$rs['url']}" title="{$rs['title']}" target="_blank">{$rs['title']}</a> {/loop} {/pc} <p>=====================</p
(3) アーティクルは、指定された位置から呼び出されます (位置を推奨します)。 )
開始位置は 5 で、3 つの記事が呼び出されます。リミット機能に相当します。
{pc:content action="position" posid="27" order="listorder DESC" num="3" start="5"} {loop $info $r} <a href='{$r[url]}'>{str_cut($r[description],115)}... </a> {/loop} {/pc} 或{pc:content action="lists" catid="54" thumb="" order="listorder DESC" start="3" num="5"} thumb="" 不分类 <p>=====================</p>循环列表新闻 <div class="content"> {pc:content action="position" posid="9" order="listorder DESC" num="4"} {loop $data $r} <a href="{$r[url]}" title="{$r[title]}">{str_cut($r[title],36,'')}</a>{date('Y-m-d H:i:s',$r[inputtime])} <p>{if $n==1}<img src="{thumb($r[thumb],90,60)}" width="90" height="60"/>{/if}{str_cut($r[description],112,'')}<a href="{$r[url]}">[reading more]</a></p> {/loop} {/pc} </div> <p>=====================</p>
(4) ページング効果があります
{pc:get sql="select * from wecheweyounews where hour=$hour order by id desc" return="data" num="50" page="$page"} <ul > {loop $data $r} <li><span class="left">·<a href="{$r['url']}" target="_blank">{str_cut($r['title'],60)}</a>(编辑:{$r[username]})</span><span class="right">{date("Y-m-d",$r['inputtime'])}</span></li></li> <?php if($n%5==0 and $n<50) echo "</ul><ul>"; ?> {/loop} </ul> </div> <div id="pages" class="text-c">{$pages}</div> {/pc}
4.
{pc:content action="position" posid="1" order="listorder DESC" thumb="1" num="5"} {loop $data $r} <a href="{$r['url']}" title="{str_cut($r['title'],30)}"><img src="{thumb($r['thumb'],300,200)}" alt="{$r['title']}" width="310" height="260" /></a> {/loop} {/pc}
5. ページング
フロント デスクの呼び出し num="50" は、ページごとに 50 レコードを指します
{pc:get sql="select * from wecheweyounews where hour=$hour order by id desc" return="data" num="50" page="$page"} <ul > {loop $data $r} <li><span class="left">·<a href="{$r['url']}" target="_blank">{str_cut($r['title'],60)}</a>(编辑:{$r[username]})</span><span class="right">{date("Y-m-d",$r['inputtime'])}</span></li></li> <?php if($n%5==0 and $n<50) echo "</ul><ul>"; ?> {/loop} </ul> </div> <div id="pages" class="text-c">{$pages}</div> {/pc}
関連学習の推奨事項: phpcms チュートリアル
以上がphpcmsタグの使い方は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。