|
|
|
|
|
|
|
|
|
#10 |
|
Just because I don't care doesn't mean I don't understand!
|
It's not difficult...
Assuming the ID of the category in question was 11, then you create a template for it naming it as category-11.php In that template you preface "The Loop" with: Code:
<?php query_posts('category_name=CATNAME&showposts=20'); ?>
If you don't want those articles showing up on the main page, put this ahead of "The Loop" on the main template: Code:
<?php if (is_home()) { query_posts('cat=-11'); } ?>
Code:
<?php wp_list_cats('exclude=11'); ?>
Last edited by jayeff; 2006-11-14 at 06:32 PM.. |
|
|
|
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|