publiccms中将推荐页的内容显示在页面片段中
Posted 穆雄雄
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了publiccms中将推荐页的内容显示在页面片段中相关的知识,希望对你有一定的参考价值。
遍历的代码如下:
<#list page.list>
<ul>
<#items as a>
<li>
<figure>
<!-- $a.itemType! : $a.itemId! ,place/redirect:count and 301 jump to a.url,place/click:count and 302 jump to a.url-->
<a href="$site.dynamicPathplace/redirect?id=$a.id!" target="_blank"><img src="$a.cover!"></a>
<figcaption><a href="$a.url!" target="_blank">$a.title!</a>($a.clicks!)</figcaption>
扩展字段:<#assign attribute=getPlaceAttribute(a.id)/>
$getPlaceAttribute(a.id).lifeteam_jieshao!?no_esc
</figure>
</li>
</#items>
</ul>
</#list>
以上是关于publiccms中将推荐页的内容显示在页面片段中的主要内容,如果未能解决你的问题,请参考以下文章