Forum Replies Created

Viewing 1 replies (of 1 total)
  • OK guys, I have the same issue. I have tried many things but I just cannot get it to work. I NEED:
    – Previous entries and Older entries to be visible (I managed to achive it, but the next problem fucked up the things)
    – The Previous and Older links go to paged=1,2,3 – for the 12 posts I have (5 per page), however I DO NOT SEE THE DIFFERENT POSTS BUT ONLY THE first 5 no mater whether it is page 1,2 or 3.

    Please help!

    Here is the index.php of the theme:

    <?php get_header(); ?>
    
    			<div id="main" class="grid_8">
    
    				<?php $more1 = get_option('woo_more1_ID'); ?>
    
        			<?php query_posts('page_id=' . $more1); ?>
    
    				<?php if (have_posts()) : while (have_posts()) : the_post(); ?>					
    
    		<div class="entry">
    
            <h2><?php the_title(); ?></h2>
    
    		<?php the_content(); ?>
    
            </div>
    
      <?php endwhile; endif; ?>
    
    		<div class="navigation">
    			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    		</div>
    
                    <?php
    
            		if( get_option('woo_show_carousel')  == 'true' ){ include(TEMPLATEPATH . '/includes/category_carousel.php'); }
    
        			?>
    
    			</div><!-- / #main -->
    
    <!-- <?php get_sidebar("home"); ?> -->
    <?php get_sidebar("2"); ?>
    <?php get_footer(); ?>

Viewing 1 replies (of 1 total)