phpcms怎麼呼叫相關文章?
今天我們來談談關於PHPcms v9系統如何在文章的最後調用隨機文章和相關文章,這樣做的目的是為了使網站更利於seo優化和增加用戶體驗效果,其他的小編在這裡就不多說了先看看主要內容吧。
1.PHPcms系統呼叫隨機文章:
{pc:content action=”lists” catid=”$catid” num=”8″ order=”rand()” return=”info”} <ul> {loop $info $v} <li><a href=”{$v['url']}” target=”_blank” title=”{$v['title']}”{title_style($v[style])}>{$v['title']}</a></li> {/loop} </ul> {/pc}
2.PHPcms系統呼叫相關文章:
{get sql=”select keywords from phpcms_content where contentid=$contentid and status=’99′” return=”gt”}{/get} {php $tempkey = get_sql_in($gt[keywords]);} {get sql=”SELECT DISTINCT c.contentid,c.thumb,c.title,c.style,c.url FROM `phpcms_content` c,`phpcms_content_tag` t WHERE c.contentid=t.contentid and c.status=99 and c.contentid!=$contentid and c.catid=$catid AND t.tag IN($tempkey) ORDER BY c.contentid DESC” rows=”6″ return=”k”} <tr> <td ><span><a href=”{$k[url]}” title=”{$k[title]}”>{str_cut($k[title], 26,”)}</a></span></td> </tr> {/get}
PHP中文網,大量的免費PHPCMS教學,歡迎線上學習!
以上是phpcms怎麼呼叫相關文章的詳細內容。更多資訊請關注PHP中文網其他相關文章!