我正在尝试使用以下代码输出日期大于或等于今天日期的事件列表:
$args = array('post_type' => 'event') // setup my custom post type
$todaysdate = blah blah //setup for today's date
// the wp loop
query_posts($args);
if ( (have_posts() && $eventdate >= $todaysdate) ) : while (have_posts()) : the_post();
$eventdate = blah blah // setup for the date of the event;
echo $event;
endwhile; endif;
如您所见,问题在于 IF 依赖于循环内的变量。
首先在循环外设置变量的最佳方法是什么?