It’s coming back tpogether now bu i still need to figure out how to implement the catagory template code. The thumbnail code works great but the tweets need to be condensed hence th catagory template need:
<?php
$post = $wp_query- >post;
if ( in_category(‘3’) ) {
include(TEMPLATEPATH . ‘/cat3.php’);
} elseif ( in_category(‘4’) ) {
include(TEMPLATEPATH . ‘/cat4.php’);
} else {
include(TEMPLATEPATH . ‘/cat.php’);
} ? >
Lets see if we can get it to this: