'events',
'date_query' => array(
array(
'year' => $today['year'],
'month' => $today['mon'],
'day' => $today['mday'],
),
),
);
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo '
- ';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '
- ' . get_the_title() . ' '; } echo '