
后台-系统-基本参数-添加变量
- 变量名称 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}

本文介绍了一种在网站后台设置热门关键词的方法,通过定义变量cfg_hotkeys并使用特定的模板标签,实现将关键词如牛肉、排骨等展示在前台,增强用户搜索体验。
463

被折叠的 条评论
为什么被折叠?



