logo

This is an old version of this answer!

Return to the current answer
Assuming your `numeric_pagination()` function works correctly, you would only need to change one line of code.

This line:

<?php query_posts('category_name=recipes'); ?>

Should be:

<?php query_posts( array( 'category_name' => 'recipes', 'paged' => $paged, 'posts_per_page' => get_option( 'posts_per_page' ) ) ); ?>

Justin Tadlock | 01/25/10 at 7:12pm

This is an old version of this answer!

Return to the current answer