Page Navigation
-
Using the follow code outputs 9 images (Blog pages shown at most is set to 9).
<?php query_posts('post_type=images'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post-image" id="post-<?php the_ID(); ?>"><?php the_content(); ?></div> <?php endwhile; ?> <?php else: ?> <h2 class="main-h2">Images</h2> <h2>No Content</h2> <?php endif; ?>
Have tried using page navigation like I have on my post page to navigate to the next 9 images but I can’t get it to work. Any suggestions?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Page Navigation’ is closed to new replies.