Pagination problem with next/previos link
-
Hello folks,
i’ve got a problem with my next/previos links on my static home page. First problem is, there is only a next post link. Second problem is the next post link always goes so domain.de/page/2 but never to page 3. Otherwise it works properly.
here is the code which is in my sidebar-page.php:
<?php query_posts( array( 'showposts' => 5, 'paged' => get_query_var('page') ) ); ?> <?php while (have_posts()) : the_post(); ?> <?php global $more;$more = 0; ?> /* some unnessesary html stuff */ <?php endwhile;?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« ältere Artikel') ?></div> <div class="alignright" ><?php previous_posts_link('neuere Artikel »') ?></div>
I hope you can help me!
Summary:
– previous button doesn’t occure
– no page/3 of postsThank you very much!
Best regards
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Pagination problem with next/previos link’ is closed to new replies.