Reply To: Next/Previous links within category only?

Home Forums Support Next/Previous links within category only? Reply To: Next/Previous links within category only?

Home Forums Support Next/Previous links within category only? Reply To: Next/Previous links within category only?

#157100
Tom
Lead Developer
Lead Developer

Hi Helen,

Not easy currently, but I’ve made it easy in the next update πŸ™‚

In GP 1.3.22, you’ll be able to do this:

add_filter( 'generate_category_post_navigation','generate_force_category_post_navigation' );
function generate_force_category_post_navigation()
{
    return true;
}

If you need it right now, you can replace the generate_content_nav() function in the template-tags.php folder with this new function: http://pastebin.com/4AUwQt78

Let me know if you need more info πŸ™‚