Te está faltando
The Loop
Código PHP:
Ver original<?php get_header();
if ( have_posts() ) : while ( have_posts() ) : the_post();
if (in_category( 'Profesionales')) { ?>
<div class="row">
<div class="span10"><div class="breadcrumb"><?php the_breadcrumb(); ?></div></div>
<div class="span7">
<h1><?php 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 }
endwhile; endif;
get_footer(); ?>