0

我正在将 MODX Revolution MIGX 用于通过 getImageList 显示在表格中的各种电视。我需要按日期电视将结果过滤到所有未来的日期。

有谁知道?

感谢帮助。

4

1 回答 1

1

您需要在&whereMIGX 调用中添加一个子句,并使用一个片段以合适的格式获取今天的日期。

<?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]]"}`
]]
于 2015-10-28T15:55:00.717 回答