我正在使用文章和getResources运行MODX Revo 2.3.2。在我的开始页面上,我不想通过调用getResources来显示最近的4篇文章。但是,它不显示图像。试图在没有phpThumbof
的情况下输出它,但它根本不起作用。
[[getResources?
&parents=`11`
&tpl=`articleRowTpl`
&includeTVs=`1`
&processTVs=`1`
&showHidden=`1`
&limit=`4`
]]
我的articleRowTpl
看起来像这样:
<article class="blog-item blog-full-width">
<div class="blog-thumbnail">
<img alt="" src="[[+tv.articleImage:phpthumbof=`w=750&h=200&zc=1`]]">
</div>
<div class="blog-full-width-date">
<p class="day">[[+publishedon:strtotime:date=`%d`]]</p><p class="monthyear">[[+publishedon:strtotime:date=`%b %Y`]]</p>
</div>
<div class="blog-content">
<h4 class="blog-title"><a href="[[~[[+id]]]]">[[+pagetitle]]</a></h4>
<p>[[+introtext:default=`[[+content:ellipsis=`400`]]`]]</p>
<a href="[[~[[+id]]]]" class="btn btn-default btn-mini btn-rounded">Mehr lesen...</a>
</div>
</article>
没有错误,它只是不输出图像路径。我仔细检查了占位符和前缀,默认为tv.
,如文档所示。
答案 0 :(得分:1)
好的,找到了。我刚用
删除了getResources的TV-PrefixtvPrefix=``
现在我可以使用[[+articleImage]]
访问电视。