Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 MODX Revolution MIGX 用于通过 getImageList 显示在表格中的各种电视。我需要按日期电视将结果过滤到所有未来的日期。
有谁知道?
感谢帮助。
您需要在&whereMIGX 调用中添加一个子句,并使用一个片段以合适的格式获取今天的日期。
&where
<?php /* * Today's date snippet, save as TodaysDate */ return date('Y-m-d H:i:s');
示例 where 子句:
[[getImageList? &tvname=`my_tv` &tpl=`my_tpl` &where=`{"my_date:<=":"[[TodaysDate]]"}` ]]