Post on Pages
-
Okay previous post most of stuff is figured out.
But now that I have my post from my “Catalog” category showing up on my “Product Catalog” page, I want to be able to go to the other post in my catalog category.
Current setup is I have only 3 post showing and this is my code for the page:
<?php /* Template Name: Product Catalog */ get_header(); ?> <!-- header include --> <div id="left"> <div id="left-top"> <h2>Product Catalog</h2> </div><!-- end left-top --> <div class="blog-content"> <?php query_posts('cat=3&showposts=3&order=ASC&orderby=post_title'); ?> <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> <h2><?php the_title(); ?></h2> <p> <?php the_content(); ?> </p> <?php endwhile; ?> </div><!-- end blog-content --> <?php else : ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php _e('Nothing Here'); ?></h2> </div> <?php endif; ?> <div class="catalog-pages"> <p> <?php previous_posts_link(); ?> • <?php next_posts_link(); ?> </p> <p> </p> </div><!-- end catalog-pages --> </div><!-- end left --> <?php get_sidebar(); ?> <!-- sidebar include --> <?php get_footer(); ?> <!-- footer include --> </div> <!-- wrap end --> </body> </html>The Problem is that when I click on the Nav links at the bottom it takes me to additional pages, but doesnt show the other post from the catalog category. Just recycles the same 3 post over and over.
How can I have it so it will go to the next page of the category showing the next 3 post in the category and vice versa?
Thanks in advance!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Post on Pages’ is closed to new replies.