Viewing 3 replies - 1 through 3 (of 3 total)
  • Could it be this part:

    <?php $my_query = new WP_Query('showposts=2&offset=1'); ?>
    <?php while(have_posts()) : the_post();

    Shouldn’t that be:

    <?php $my_query = new WP_Query('showposts=2&offset=1'); ?>
    <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
    Thread Starter amobaroti

    (@amobaroti)

    ^^^^ Thanks, but no that did not change a thing

    Thread Starter amobaroti

    (@amobaroti)

    Thanks!!! I managed to get it working. I think maybe my pagecaching widget did not allow me to see the changes straightaway

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Offset not working in category page’ is closed to new replies.