How to remove /page/2/ from home page?
First of all: I don't understand the meaning or the action that http://myurl/page/2 does?
I checked the Net tab in Firebug
and saw that my page takes more than 3 seconds to load /page/2... but I don't need pagination at my front page at all. I don't get where it comes from either.
My question: how do I disable / remove this and show it only when pagination is needed?
This is the query I am using to get posts:
?php
query_posts(array('orderby' = 'rand', 'showposts' = 10));
if (have_posts()) :
while (have_posts()) : the_post();
?
Topic urls pagination Wordpress performance
Category Web