pagination problem
-
Hi, I want to create pagination for a page that show 3 posts
That’s the code I have:<?php query_posts('showposts=3'); while (have_posts()) : the_post(); ?> <li class="noticias"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php get_posts(); ?> <?php endwhile; ?>
What I want would be something like this:
- Article 1
- Article 2
- Article 3
< Previous 3 items | Next 3 Items >
Any Idea?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘pagination problem’ is closed to new replies.