Anyone know how to remove the pagination (not just the Prev/Next links) from the category pages? What I want is for it to list all the articles within that category on one page.
Well, that would be one looooong page if you has many articles in that category..haha Anywayz, this can be accomplished by editing the category.php template, but it also depends on what theme your are using. find this code: <div class="post_updates"><?php if(function_exists('wp_pagenavi')): ?> <?php wp_pagenavi(); ?><?php else : ?><?php posts_nav_link(); ?> <?php endif; ?></div>
I was planning on stripping down the category pages to only list the titles of the articles so it wouldn't be too terribly long. It would be much easier to navigate than going back through 10-20 pages. I don't have a category.php template. The only category.php I have is in wp-includes. I am using 2.1.3 if that matters.
The number of posts displayed will be equal to the number of posts you have set for the homepage. So If you've set 10 for Homepage, in the category pages , you get 10.
what you need is a plugin. this plugin will list all articles in the category id you choose from. but you must have runPHP plugin to make it works. create a new page, and put this code in the editor. replace cat-id with the category id number. <?php wp_cat_posts(cat-id); ?> Code (markup): make sure runPHP is check and click Publish. -cypher.