织梦DEDECMS自定义输出热门搜索关键词

效果

实现方法:

后台-系统-基本参数-添加变量,如下图

变量名称:cfg_hotkeys
变量类型:文本
参数说明:热门关键词
变量值:职场,女性,PHP,老板,seo

添加完成后,记住要保存变量而不是点击最下面的确定。以前有好几次我都出现这种错误,明明添加了。点击确定后,页面就是看不到新添加的变量。

模板里面调用代码:

{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}

 

 

THE END