makeylon 0 Report post Posted February 24, 2011 I've set up a category posts page at: Japanese Candlesticks The way I did this was to create a Page with the following code (and php-exec installed): <?php query_posts('showposts=0&cat=116&order=asc'); if (have_posts()) : while (have_posts()) : the_post(); ?> <b><a href="<?php the_permalink() ?>"><?php the_title() ?></a></b> <?php the_excerpt() ?> <?php endwhile; endif; ?> <?php wp_reset_query(); ?> However, the navigation isn't appearing. I do have PageNavi installed. Currently I have the posts set to display 5 (in Reading settings) so only 5 posts are displayed while there are currently 11 posts in that category. How do I get the navigation to show so I can access the other posts? Share this post Link to post Share on other sites
Kate 3 Report post Posted February 24, 2011 Hey Mark - Would Adam's reply/code here be helpful: http://www.pagelines.com/forum/topic.php?id=6451 Share this post Link to post Share on other sites
makeylon 0 Report post Posted February 24, 2011 Well, I tried that, and it puts Page 1 2 down on the bottom, but when I click on page 2 it is empty of content, and with 5 posts to a page, 11 posts total, there should be three pages. So, that doesn't seem to be working. Share this post Link to post Share on other sites
cmunns 16 Report post Posted February 24, 2011 There are specific pagination parameters when you use query_posts http://codex.wordpress.org/Function_Reference/query_posts#Pagination_Parameters Make sure you include the correct snippet to allow pagination. Share this post Link to post Share on other sites
makeylon 0 Report post Posted February 25, 2011 I've used your code as shown in the other thread. My understanding is version 1.3.0 will have additional pagination support, so maybe I'll shelve this until after the weekend. With luck, the new version will do what I want it to without me having to hack it up. lol. (fingers crossed) Share this post Link to post Share on other sites