Skip to content

Instantly share code, notes, and snippets.

@axxe16
Last active September 21, 2022 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save axxe16/198826d72dea3ea5e52de8cf5c8ccd74 to your computer and use it in GitHub Desktop.
Save axxe16/198826d72dea3ea5e52de8cf5c8ccd74 to your computer and use it in GitHub Desktop.
wp query per post pubblicati oggi #wp #wpquery
<?php
//query che recupera tutti i ctp di titpo evento pubblicati oggi
$today = getdate();
$args = array(
'date_query' => array(
array(
'year' => $today['year'],
'month' => $today['mon'],
'day' => $today['mday'],
),
),
'post_type' => 'event',
'posts_per_page' => -1,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment