I'm trying to get navigation links to work for a category page located here:
http://www.kettlewell.net/category/tdmp-members/
The file is category-165.php (category specific page)
I've tried WP nav links and wp_pagenavi with no success.
WP native shows nothing at all - no link, no hint
wp_pagenavi shows me page [1 of 0]
So I think that somehow my number of pages is getting messed up, but I don't know how.
I've verified that my navigation links are within the loop, just after the endwhile.
Ulitmately I'm just wanting this one category listed on one page, but I'm having a heck of a time getting the pagination to work.
I can set query_posts($query_string."&showposts=100"); to get a long list of post titles, but I'd rather split it up into chunks
For wp_pagenavi I have:
if(function_exists('wp_pagenavi')) {wp_pagenavi();}
for WP native I have:
previous_posts_link('Next');
next_posts_link(' Prev');
Any thoughts on what's interfering?
Matt