#### 相關文章 [模塊 cms]
> tag屬性指定關鍵詞列表英文逗號,分隔(支持調用變量,如:$keyword,$tags)
> *不建議對相關文章標簽設置cache緩存屬性
> *tags標簽有一定性能問題,建議使用第三方全文索引組件(如:Xunsearch、 Elasticsearch、Sphinx 等)(未來版本將以插件形式引入)
```
{yzn module="cms" action="tags" tag="$tags" order="updatetime ASC" num="5" return="data" cache="0"}
{volist name="data" id="vo"}
<a href="{$vo.url}" title="{$vo.title}">{$vo.title}</a>
?{/volist}
{/yzn}
```
> 標簽列表 tags [模板:tags_list.html]
```
{volist name="list" id="vo"}
<a href="{:url('cms/index/tags',['tag'=>$vo['tag']])}" title="{$vo.usetimes}個話題">{$vo.tag}({$vo.usetimes})</a>
{/volist}
```