modx同上过滤

发布于 2024-10-04 07:09:59 字数 261 浏览 3 评论 0原文

我有这行代码: [[同上? &深度=3 &tpl=@FILEweb_assets/chunks/x/x.html &parents=3 &filter=< code>template,7|endDate,[+now+],3]]

上面的行显示使用模板 7 的所有项目。现在我想进行更改,以便它显示使用模板 7 和 10 的所有项目。 我应该怎么办??

谢谢

I have this line of code:
[[Ditto? &depth=3 &tpl=@FILEweb_assets/chunks/x/x.html &parents=3 &filter=template,7|endDate,[+now+],3]]

The above line displays all items which using template 7. Now I want to make a change so that it will display all items with template 7 and 10. What should I do??

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

錯遇了你 2024-10-11 07:09:59

根据文档,您可以简单地添加另一个子句,如下所示

[[Ditto? &depth=3 &tpl=@FILEweb_assets/chunks/x/x.html &parents=3 &filter=template,7|template,10|endDate,[+now+],3]]

According to the documentation you can simply add another clause as follows

[[Ditto? &depth=3 &tpl=@FILEweb_assets/chunks/x/x.html &parents=3 &filter=template,7|template,10|endDate,[+now+],3]]
寄离 2024-10-11 07:09:59

Ditto 提供了参数 &where,它接受有效的 MySQL WHERE 语句。我想应该有帮助。

&filter=endDate,[+now+],3
&where=`template!=7 AND template!=10`

Ditto provides parameter &where, which accept a valid MySQL WHERE statement. I guess it should help.

&filter=endDate,[+now+],3
&where=`template!=7 AND template!=10`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文