Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 9, 2014 13:45
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 billerickson/9447954 to your computer and use it in GitHub Desktop.
Save billerickson/9447954 to your computer and use it in GitHub Desktop.
$today = getdate();
$args = array(
'posts_per_page' => 5,
'orderby' => 'rand',
'date_query' => array(
array(
'year' => $today["year"],
'month' => $today["mon"],
'day' => $today["mday"],
),
),
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment