When query a post, I need not only the post but also the post_meta. But seems the post query and meta query can not be done together.
With WP_Query, I first get the posts, then, I need to do get_post_meta(get_the_ID(),'key',true)
Is this the way WP works? Or, is there a way to query both in one hit?