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

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

pbootcms模板修改tags實(shí)現(xiàn)keywords內(nèi)容關(guān)聯(lián)匹配

時(shí)間: 2024-02-18 13:36 閱讀: 作者:素材無憂網(wǎng)

根據(jù)keywords關(guān)鍵字來做匹配在文章詳情頁里顯示相關(guān)內(nèi)容,同樣帶有一樣的關(guān)鍵字的。

打開/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) . "'";
                            }
                        }
                    }
                }

在詳情頁里列表調(diào)用代碼參考以下,增加tags={content:keywords}即可

調(diào)用代碼如下:

{pboot:list scode=2 num=4 tags={content:keywords}}
[list:title]
{/pboot:list}


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

轉(zhuǎn)載請(qǐng)注明: pbootcms模板修改tags實(shí)現(xiàn)keywords內(nèi)容關(guān)聯(lián)匹配

標(biāo)簽:  
相關(guān)文章
推薦文章
模板推薦