Get post ids from WP_Query?
Is there a way I can retrieve an array of post ids queried from the following: $latest = new WP_Query( array ( ‘orderby’ … Read more
Is there a way I can retrieve an array of post ids queried from the following: $latest = new WP_Query( array ( ‘orderby’ … Read more
I want to return ALL posts with query_posts. I tried setting posts_per_page to a really high number, but query_posts freaks out and doesn’t … Read more
I am creating a front end dashboard where I need to show all the posts by the current user. So, I need to … Read more
I read @nacin’s You don’t know Query yesterday and was sent down a bit of a querying rabbit hole. Before yesterday, I was … Read more
It seems like half the tutorials in the Codex and around the blogosphere use query_posts() and half use WP_Query. They all do similar … Read more