
Originally Posted by
Azmeen
Number 2 is actually very easy to implement.
By default, WP searches for the template file archives.php when presenting posts within a particular category (if it doesn't exist, WP will then use index.php). This is the file where you'll be doing customisations.
Essentially, you'll need to use a switch or if..then..else control structure to customise the output. The variable that you'd use to manipulate the output would primarily be $cat_id.
you could also just use the pages function as well 
for example, say he has 3 categories
Site News
PHP
MYSQL
Home Page
You can leave this to default and just display the latest posts or you can go to options, reading, Reading Options and change it so that the home page is static or from a specific category
Category Home Pages
He could create a 'homepage' for each section and, using the post slug, the url would still be nice (assuming the mod rewrite through permalinks had been done)
so he would have 3 homepages
eg.
http://www.ryanprice.ca/blog/site-news/
http://www.ryanprice.ca/blog/php/
http://www.ryanprice.ca/blog/mysql/
If the pages list was automatically generated using :
PHP Code:
<?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
then he would have to list the pages manually.
I think this would work as you dont have to change code etc.The pages would bring the visitor to the respective home pages but the category listing
would still show Site News, PHP and MYSQL so visitors could view the latest posts through that area (and perhaps the home page too).
Bookmarks