I found this thread:
http://forum.bytesforall.com/showthread.php?t=2592
...which seems like the problem I'm having, but when I add $query_string. to query_posts the template stops working and displays nothing from the loop. I'm new to PHP so maybe I'm applying it incorrectly. This is what I have added before the loop:
PHP Code:
<?php
$catID = 0;
if (is_page('news')) {
$catID=4;
} elseif (is_page('photos')) {
$catID=5;
} elseif (is_page('national-team')) {
$catID=18;
}
if ($catID) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=$catID&paged=$paged");
} ?>