Add following code to your functions.php.
$query->set( 'posts_per_page', -1 );
shows all posts.
Above example does not work in Page requests, use query_posts()
instead.
Add following code to your functions.php.
$query->set( 'posts_per_page', -1 );
shows all posts.
Above example does not work in Page requests, use query_posts()
instead.