Gracias por responder Nekko. Te adjunto el código del single.php. Es muy sencillito, comio ves sólo estoy con la primera parte:
Código:
<?php get_header(); ?>
<?php if (in_category( 'Profesionales')) { ?>
<div class="row">
<div class="span10"><div class="breadcrumb"><?php the_breadcrumb(); ?></div></div>
<div class="span7">
<h1><? the_title(); ?></h1>
<?php the_content(); ?>
</div>
<div class="span3"><?php get_sidebar('profesionales') ?></div>
</div>
<?php } elseif (in_category( 'Empresas SubContratistas')) { ?>
Opción 1
<?php } else { ?>
Opción 2
<?php } ?>
<?php get_footer(); ?>
El título me lo muestra perfecto y sin problemas.