to display only todays events
-
this query displays future events …how to make this custom query to display the only today’s events…….
$the_query = new WP_Query( array(
‘post_type’ => ‘event’,
‘posts_per_page’ => ‘100’,
‘meta_query’ => array(
array(
‘key’ => ‘_start_ts’,
‘value’ => current_time(‘timestamp’),
‘compare’ => ‘>=’,
‘type’=>’numeric’,)
)
));
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘to display only todays events’ is closed to new replies.