i have tried the following code but it gives me posts within 6 hours of publish date.
$args = array(
'post_type' => 'epl_registration',
'post_status' => 'publish',
'fields' => 'ids',
'date_query' => array(
'after' => '6 hours ago'
//'after' => '6 hours' //returns empty if used
)
);
$the_query = new WP_Query( $args );
I need posts that are published 6 hours ago and not published within 6 hours
Please help
Have you tried with “before”?