View Single Post
10-02-2009, 10:30 PM
#4
Garyrae is offline Garyrae
Status: Request a custom title
Join date: Dec 2005
Location: Colchester, UK
Expertise:
Software:
 
Posts: 4,625
iTrader: 16 / 100%
 

Garyrae is on a distinguished road

Send a message via MSN to Garyrae Send a message via Skype™ to Garyrae

  Old

Just add a conditional inside the loop of the archive.php template.

PHP Code:
<?php
while(have_posts()) : the_post();
    if(
is_category('tutorials')) {
        
// code for the tutorial post
    
} else {
        
// normal post code
    
}
endwhile;
?>

Reply With Quote