Probe de la siguiente manera y funciona.
Antes:
Código PHP:
<?php
if( has_excerpt() ){
the_excerpt(); // extracto
}
?>
Despues:
Código PHP:
<?php if ( ! empty( $post->post_excerpt ) ) : ?>
<?php the_excerpt(); ?>
<?php endif; ?>
Gracias
TMeister por su ayuda.