WP_Query and posts_per_page
21 Mar
Problem The following code does not seem to limit the posts to 3 posts. Instead uses the wordpress setting of 10 posts: // The Query $the_query = new WP_Query( array( ‘nopaging’ => true, ‘posts_per_page’ => 3, ‘post_type’ => ‘post’ ) ); Wordpress codex says the posts_per_page will be overridden if it is on a feed. [...]
