Prev and Next Post links for specific category page
-
GOAL: I just want to display previous and next post links for the posts under a specific category, on a dedicated page for that category. I don’t want to show any other posts from other categories.
WHAT I’VE DONE: I’ve created a new page template, a new loop template and an archives template. I’ve set up the loop to use wp_query and grab the category.
<?php $args = array( 'category_name' => 'comics', 'posts_per_page' => 1 ); $loop = new WP_Query( $args ); ?> <?php if ( $loop->have_posts() ) while ( $loop->have_posts() ) : $loop->the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title" style="text-align:center"><?php the_title(); ?></h2> <hr/> <div class="entry-content"> <?php the_content(); ?> <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?> </div><!-- .entry-content --> </div><!-- #post-## --> <?php endwhile; // end of the loop. ?>
QUESTION: How would I create links for the previous and next posts in this category?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Prev and Next Post links for specific category page’ is closed to new replies.