Hmm, maybe I missed something, but I didn’t see anywhere in that article as to how exactly to make different templates to display category archives with different styles. The article seemed to show more basic stuff like how to add text before the posts are displayed, but I’m talking about having two different archive styles that display posts differently.
Would adding a new template file and then adding the code:
<?php
{
query_posts("cat=4");
}
?>
be the best way to do this, or is there a better way?