Is there a way to order posts and custom post types as one group?
In terms of the query, it’s pretty straightforward to do this, but you’ll have to come up with your own interface for creating the order of posts, which should ultimately save the post IDs to an array in the order you want them to appear: $post_ids = array( 42, 13, 23, 99 ); Then it’s … Read more