<?php
if ( have_posts() ) { the_post(); rewind_posts(); }
if ( in_category(3) ) {
include(TEMPLATEPATH . '/single-3.php');
} elseif ( in_category(24) ) {
include(TEMPLATEPATH . '/single-24.php');
} elseif ( in_category(6) ) {
include(TEMPLATEPATH . '/single-6.php');
} elseif ( [B]is_tax("movies")[/B] ) { //Esta parte es donde surge el problema, pues al ser un tipo de custom post, no se si poner el tipo de custom post 'movies' o si agregar el de una taxonomia "x"
include(TEMPLATEPATH . '/[B]single-movies.php[/B]'); //Single para este tipo de posts
} else {
include(TEMPLATEPATH . '/loop-single.php'); //Este es el loop que se muestra por defecto
}
?>