pbootcms怎么實(shí)現(xiàn)tags與keywords內(nèi)容關(guān)聯(lián)
下面來(lái)說(shuō)說(shuō)pbootcms怎么實(shí)現(xiàn)tags與keywords內(nèi)容關(guān)聯(lián)。
打開(kāi)/apps/home/controller/ParserController.php文件
找到
// tags數(shù)據(jù)參數(shù)篩選
$where2 = array();
if ($tags) {
$tags_arr = explode(',', $tags);
foreach ($tags_arr as $value) {
if ($value) {
if ($fuzzy) {
$where2[] = "a.tags like '%" . escape_string($value) . "%'";
} else {
$where2[] = "a.tags='" . escape_string($value) . "'";
}
}
}
}
改為
// tags數(shù)據(jù)參數(shù)篩選
$where2 = array();
if ($tags) {
$tags_arr = explode(',', $tags);
foreach ($tags_arr as $value) {
if ($value) {
if ($fuzzy) {
$where2[] = "a.keywords like '%" . escape_string($value) . "%'";
} else {
$where2[] = "a.keywords='" . escape_string($value) . "'";
}
}
}
}
在詳情頁(yè)里列表調(diào)用代碼參考以下,增加tags={content:keywords}即可
調(diào)用代碼如下:
{pboot:list scode=2 num=4 tags={content:keywords}}
<a href="[list:link]"><img src="[list:ico]" class="www-92jzh-com" alt="[list:title]" /></a>
{/pboot:list}
如果您的問(wèn)題還未解決可以聯(lián)系站長(zhǎng)付費(fèi)協(xié)助。

有問(wèn)題可以加入技術(shù)QQ群一起交流學(xué)習(xí)
本站vip會(huì)員 請(qǐng)加入無(wú)憂(yōu)模板網(wǎng) VIP群(50604020) PS:加入時(shí)備注用戶(hù)名或昵稱(chēng)
普通注冊(cè)會(huì)員或訪(fǎng)客 請(qǐng)加入無(wú)憂(yōu)模板網(wǎng) 技術(shù)交流群(50604130)
客服微信號(hào):15898888535
聲明:本站所有文章資源內(nèi)容,如無(wú)特殊說(shuō)明或標(biāo)注,均為采集網(wǎng)絡(luò)資源。如若內(nèi)容侵犯了原著者的合法權(quán)益,可聯(lián)系站長(zhǎng)刪除。