i am having trouble with conditional and custom post types.
i would like to set something up like this:
<?php
if (in_term('products')){
include ('products.php');
}elseif (in_term('downloads')){
include ('downloads.php');
}else {
//Nothing Happens
}?>
Obviously this doesnt work, but if there is an alternative anybody knows then please share :)
Thank you,
Dan
