Querying posts Next Posts Link in Index
-
Hi guys,
I’m querying posts in my index.php like that :
<?php query_posts('offset=1'); if (have_posts()) : while (have_posts()) : the_post(); ?> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php the_excerpt(); ?> <?php endwhile; endif; ?>
Then, I’m adding a
next_posts_link
but it brings me again in the same index.php.Do you know how to solve this ?
Many thanks for any help;
D.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Querying posts Next Posts Link in Index’ is closed to new replies.