Eric -
Love your plugin. Was very easy to install. I followed the directions and installed the wp-pageinate plugin and inserted the code in my loop below. When the page renders it shows the pagination when I click on the link to go to the next the older posts do not show up on the page. I did notice that the page numbers change in the url. Can you please take a look at my loop code below and tell me if I did something wrong.
I am a designer not a code guy. Any help would be much appreciated.
Is this because I am just using a single category to show posts?
code \\
<!--event loop begin -->
<?php query_posts('cat=3'); ?>
<!--<?php if(have_posts()) : ?>-->
<?php while(have_posts()) : the_post() ?>
<h2>" title="Permanent link to <?php the_title_attribute(); ?>"><?php the_title(); ?></h2>
<div class="dliList"><?php the_excerpt(); ?></div>
<?php endwhile; ?>
<div class="navigation">
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
</div>
<?php else: ?>
<?php wp_reset_query(); ?>
<h3>Sorry, we could not find what you were looking for. </h3>
<div><?php get_search_form(); ?></div>
<?php endif; ?>
\\