Hey there, Lets say i have a blog with 10 posts. I want to display 20 posts on my frontpage.
How can i make the wordpress loop repeat itself till it reaches 20?
if ( have_posts() ) : while ( have_posts() ) : the_post(); endwhile; endif;
Btw... i do not want two loops... easy answer would be to have 2 loops, each with 10 posts, making it equal 20.
Thx