定义
where条件的sql代码
示例
查询当天发布的内容
{php
$start = strtotime(date('Y-m-d 00:00:00'));
$end = strtotime(date('Y-m-d 23:59:59'));
$sql = "addtime>=".$start." and addtime<=".$end;
/}
{loop table="article" sql="$sql" limit="10" as="v"}
{/loop}
注意事项
$sql必须是在PHP中写内容,不能直接在loop中写。