我有这行代码:
[[同上? & depth = 3
& tpl = @FILEweb_assets/chunks/x/x.html
& parents = 3
& filter = template,7|endDate,[+now+],3
]]
上面的行显示了使用模板7的所有项目。现在我想进行更改,以便显示模板7和10的所有项目。我该怎么办?
感谢
答案 0 :(得分:2)
根据documentation,你可以简单地添加另一个子句如下
[[Ditto? &depth=3 &tpl=@FILEweb_assets/chunks/x/x.html &parents=3 &filter=template,7|template,10|endDate,[+now+],3]]
答案 1 :(得分:1)
Ditto提供参数&where
,它接受有效的MySQL WHERE语句。我想它应该会有所帮助。
&filter=endDate,[+now+],3
&where=`template!=7 AND template!=10`