Created
March 4, 2020 13:43
-
-
Save wickywills/0460c6e825ef3849980da84d81f2cb0e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
$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