Skip to content

Instantly share code, notes, and snippets.

@bepatrickdavid
Created August 28, 2015 15:08
Show Gist options
  • Save bepatrickdavid/8f67621b7a01f999216a to your computer and use it in GitHub Desktop.
Save bepatrickdavid/8f67621b7a01f999216a to your computer and use it in GitHub Desktop.
ACF: get post order by date picker
<?php $news = get_posts(array(
'post_type' => 'post',
'post_status' => 'publish',
'meta_key' => 'data_evento', //nome custom field
'orderby' => 'meta_value_num',
'order' => 'DESC',
'posts_per_page' => 12,
'cat' => '3'
)); ?>
<?php foreach($news as $nw): ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment