织梦CMS调用tag时如何添加链接
时间:2016-03-31 12:00来源: 作者: 点击:次
织梦CMS打开 /templets/default/list_article.htm 找到: small好评:/small[field:scores/] 在后面加上如下代码: small标签:/small [field:id runphp=yes] global $cfg_cmspath; $tags = GetTags(@me); $revalue = ; $tags = explo
织梦CMS打开 /templets/default/list_article.htm 找到:
<small>好评:</small>[field:scores/]
在后面加上如下代码:
<small>标签:</small>
[field:id runphp='yes']
global $cfg_cmspath;
$tags = GetTags(@me);
$revalue = '';
$tags = explode(',', $tags);
foreach($tags as $key => $value){
if($value){
$revalue .= '<a href="'.$cfg_cmspath.'/tags.php?/'.$value.'/">'.$value.'</a> ';
}
}
@me = $revalue;
[/field:id]
这样在调用tag的时候就会加上链接了,使用自带的GetTags函数获取文档对应的TAG列表,使用循环数组元素,将其对应的值输出并加上链接。
(责任编辑:好模板) |
------分隔线----------------------------