paginating category page?
-
Here is the code on my category page:
<?php /* Template Name: Category*/ ?> <?php get_header(); ?> <div id="meat-left"> <h1> Recordingography >><?php single_cat_title(); ?></h1> <p><?php echo category_description(); ?></p> <?php if (have_posts()): while (have_posts()): the_post(); ?> <ul class="ology"> <li> <?php the_post_thumbnail('thumbnail', array('class' => 'alignleft')); ?> <a href="<?php the_permalink(); ?>"><h2><?php the_title(); ?></h2></a> <p> <?php $Note = get_post_meta($post->ID, 'Note', true); if($Note != '') echo "<strong> - </strong>" . $Note; ?></p> </li> </ul> <?php comments_template(); ?> <?php endwhile; endif;?> <?php echo do_shortcode('[fbcomments]'); ?> </div> </div> <?php get_sidebar();?> <?php get_footer(); ?>
Where do I add the code to paginate these? Right now there are only 10 posts showing…
Thanks in advance!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘paginating category page?’ is closed to new replies.