在 ModX 中创建文章预览?
Create article preview in ModX?
我如何使用他们的 [[*description]]
和 [[*introtext]]
在另一个资源页面的右侧边栏,称为 "services"(此页面的(模板)代码:
<html>
<head>
<title>[[++site_name]] - [[*pagetitle]]</title>
<base href="[[++site_url]]" />
</head>
<body>
[[*content]]
</body>
</html>
)
我创建了新的 tpl,使用以下代码将其命名为 "article_story":
<p><a href="[[++site_url]][[~[[+id]]]]">[[+pagetitle]]<br>
<img alt="[[+pagetitle]]" src="[[+tv.image:phpthumbof=`w=300`]]"></a><br>
[[+introtext]]<br>
</p>
我试过使用这个代码:
[[!getResources? &parents=`[[*id]]` &tpl=`article_story` &limit=`3` &sortby=`{"publishedon":"ASC","createdon":"DESC"}`]]
但是没用。有什么想法吗?
默认情况下,getResources Extra 不包括未发布的资源。您需要将 &showUnpublished
添加到代码段调用中:
[[!getResources?
&parents=`[[*id]]`
&tpl=`article_story`
&showUnpublished=`1`
&limit=`3`
&sortby=`{"publishedon":"ASC","createdon":"DESC"}`
]]
我如何使用他们的 [[*description]]
和 [[*introtext]]
在另一个资源页面的右侧边栏,称为 "services"(此页面的(模板)代码:
<html>
<head>
<title>[[++site_name]] - [[*pagetitle]]</title>
<base href="[[++site_url]]" />
</head>
<body>
[[*content]]
</body>
</html>
)
我创建了新的 tpl,使用以下代码将其命名为 "article_story":
<p><a href="[[++site_url]][[~[[+id]]]]">[[+pagetitle]]<br>
<img alt="[[+pagetitle]]" src="[[+tv.image:phpthumbof=`w=300`]]"></a><br>
[[+introtext]]<br>
</p>
我试过使用这个代码:
[[!getResources? &parents=`[[*id]]` &tpl=`article_story` &limit=`3` &sortby=`{"publishedon":"ASC","createdon":"DESC"}`]]
但是没用。有什么想法吗?
默认情况下,getResources Extra 不包括未发布的资源。您需要将 &showUnpublished
添加到代码段调用中:
[[!getResources?
&parents=`[[*id]]`
&tpl=`article_story`
&showUnpublished=`1`
&limit=`3`
&sortby=`{"publishedon":"ASC","createdon":"DESC"}`
]]