Add paging on the bottom
-
Hello, I have this simple code that shows last 5 posts.
But If I have more it doesn’t show the “older post” button. ??<?php query_posts(‘showposts=5'); global $more; $more = 0; ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <div class="more_home"> <div class="more_title"><?php the_title(); ?></div> <?php the_content(''); ?> </div> </div> <?php endwhile;?> <?php get_footer(); ?>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Add paging on the bottom’ is closed to new replies.