Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/07/2014, 17:49
pilucho
 
Fecha de Ingreso: noviembre-2004
Ubicación: NULL
Mensajes: 652
Antigüedad: 19 años, 5 meses
Puntos: 6
Respuesta: Error doble contenido en content.php

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.