Skip to content

Instantly share code, notes, and snippets.

@gioiliop7
Created January 5, 2023 15:59
Show Gist options
  • Save gioiliop7/ec7c80918074aaeeac35791805b4e5bb to your computer and use it in GitHub Desktop.
Save gioiliop7/ec7c80918074aaeeac35791805b4e5bb to your computer and use it in GitHub Desktop.
[PHP][WORDPRESS]Get post of specific date (Today's date example)
<?php
function getPostOfSpecificDate($date){
$args = array(
'post_type' => 'post',
'posts_per_page' => -1,
'post_status' => 'any',
'date_query' => array(
array(
'year' => $date['year'],
'month' => $date['mon'],
'day' => $date['day']
)
)
);
$posts = new WP_Query($args);
return $posts;
}
$today = getdate();
$posts = getPostOfSpecificDate($today);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment