如果您的存储日期不同,那么时间戳将很难做到这一点。
要获取此if is timestamp stored,需要添加如下“meta\\u query”:
add_action(\'pre_get_posts\', \'my_pre_get_posts\');
function my_pre_get_posts($query)
{
$offest = 0;// you must count this to avoid today and tomorrow
$query->set(
\'meta_query\',
array(
\'relation\' => \'AND\',
array(
\'key\' => \'o_event_start\',
\'value\' => time() + $offest,
\'type\' => \'numeric\',
\'compare\' => \'>\',
)
)
);
}
0:01的$OFFET很简单2*24*60*60-1(两天*24小时*60米*60秒-1秒),其他时间必须从当前时间开始。