Skip to content

Instantly share code, notes, and snippets.

@wickywills
Created March 4, 2020 13:43
Show Gist options
  • Save wickywills/0460c6e825ef3849980da84d81f2cb0e to your computer and use it in GitHub Desktop.
Save wickywills/0460c6e825ef3849980da84d81f2cb0e to your computer and use it in GitHub Desktop.
```
$args = array(
'post__in' => $ids,
'post_type' => array(
'post',
'featured_item', // Include for its tag archive listing.
),
'numberposts' => -1,
'meta_key' => 'custom_post_date',
'orderby' => 'meta_value',
'order' => 'ASC',
'posts_per_page' => 9999,
'ignore_sticky_posts' => true,
);
```
Where "custom_post_date" is the custom field
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment