Função condicional (Conditional Tags) para identificar se é determinado Custom Post Type, adicione em seu functions.php:
function is_post_type( $tipo ){ global $wp_query; if($tipo == get_post_type($wp_query->post->ID)) return true; return false; }
Para usar, faça assim:
<?php if (is_post_type( 'seu_post_type' )){ ?>
...
<?php } ?>
Para quem precisa consultar muitas vezes e em muitos lugares, essa é uma função que pode ajudar.