Viewing 2 replies - 1 through 2 (of 2 total)
  • That theme is not coded for pagination in index.php. You can add it by changing a few lines near the top of the file like this.

    Change this:

    <?php query_posts('orderby=random');
    if (have_posts()) : while (have_posts()) : the_post(); ?>

    to this:

    <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts("orderby=random&paged=$paged");
    if (have_posts()) : while (have_posts()) : the_post(); ?>
    Thread Starter bigscaryrobot

    (@bigscaryrobot)

    You are my hero! Thanks so much! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Next and Previous buttons not working on homepage’ is closed to new replies.