PHP Code:
<?php if (is_front_page() && !is_paged() )
$posts = query_posts($query_string . '&cat=-3'); ?>
After reading another posts herein I tried this code instead:
PHP Code:
<?php
if (is_home() and !(is_paged()) ) {
query_posts("cat=-3");
}
?>
Figured I either needed to:
- change is_home or is_front_page to another command,
- expand that section to include a command that referred to the Older / Newer links, or
- add another segment of of code identical to the above and replace is_home or is_front_page with a tag that referred to whatever the Older / Newer links are IDed as.
Just know I ain't got it right. Please share any insights you have that'll bring my coding prowess up to speed with my goal so I can resume my spot at the clever table. Thanks.