イベント一覧

イベント

‘orderby’ => ‘meta_value’,
‘meta_key’ => ‘end_date’,
‘order’ =>’ASC’,
‘meta_query’ => array(
array(
‘key’ => ‘end_date’,
‘value’ => $current_date,
‘compare’ => ‘>=’,
‘type’ => ‘DATE’
)
)
);
$output = ”;
query_posts( $args );
if ( have_posts() ) :
$output .= ‘

      ‘;
      while ( have_posts() ) : the_post();
      $output .= ‘

‘;
endwhile;
$output .= ‘

‘;
echo $output;
wp_reset_query();
endif;
?>