Hi
My blog is here. I have 2 loops on the page, Loop1 is the center. Loop2 is the right-hand sidebar. Loop1 is paginated, and shows a single post, using this code:
<?php if (have_posts()) : ?>
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('cat=19,20,&paged=$paged'); ?>
<?php while (have_posts()) : the_post(); ?>
When I click the Page Link I'm taken to the Single post page. There, the Loop2 produces errors. Loop2 is fine when you're on the first page: and then it screws up on pages 2 and 3: Page 2, Page 3
I have this code in Loop1 on the Single page:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('cat=19,20,&paged=$paged'); ?>
When I remove that code, Loop2 is screwed up on ALL the pages, not just pages 2 and 3.
Does anyone have any ideas? Thanks in advance.