I have problem with pagination in index. Page 2 and above are the same with page 1. But this is not happen in category.
My code is :
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('paged='.$paged.'&cat=-'. $ex_miscellaneous . '&showposts=' . $showcat .'&orderby=post_date&order=desc');?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
My URL is https://gigathemes.com
Can anyone please give me a hint?