上篇介紹我們介紹了DEDECMS程序織夢(mèng)設(shè)置熱門搜索詞方法,今天呢我們通過程序二次改進(jìn),來完成織夢(mèng)程序自定義熱門搜索關(guān)鍵詞功能,下面開始吧。
實(shí)現(xiàn)效果:
實(shí)現(xiàn)步驟1:后臺(tái)-系統(tǒng)-基本參數(shù)-添加變量
- 變量名稱 cfg_hotkeys
- 變量類型 文本
- 參數(shù)說明 熱門關(guān)鍵詞
- 變量值 牛肉,排骨,番茄,芒果,香菇,玉米
實(shí)現(xiàn)步驟2:搜索標(biāo)簽代碼寫法:
{dede:global.cfg_hotkeys runphp="yes"} global $cfg_cmspath; $hotkeys = explode(',',@me); $result = ''; for($index=0;$index<count($hotkeys);$index++){ $result .= "<a href='{$cfg_cmspath}/plus/search.php?keyword=".urlencode($hotkeys[$index])."'>".$hotkeys[$index]."</a> "; } @me = $result; {/dede:global.cfg_hotkeys} |