Skip to content

Instantly share code, notes, and snippets.

@younes-dro
Last active November 22, 2019 19:57
Show Gist options
  • Save younes-dro/4aa096eb82b79d7dd3b9437554c9af77 to your computer and use it in GitHub Desktop.
Save younes-dro/4aa096eb82b79d7dd3b9437554c9af77 to your computer and use it in GitHub Desktop.
add_action('pre_get_posts', 'cgy_same_day');
function cgy_same_day($query) {
if ($query->is_home() && $query->is_main_query()) {
$today = getdate();
$query->set('date_query', array(
array(
'day' => $today['mday'],
'month' => $today['mon'],
),
));
$query->set('post_status' , array('publish','future'));
}
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment