后台-系統-基本參數-添加變量
- 變量名稱 cfg_hotkeys
- 變量類型 文本
- 參數說明 熱門關鍵詞
- 變量值 牛肉,排骨,番茄,芒果,香菇,玉米
前台模板標簽調用
{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}