Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/03/2011, 18:05
InKarC
 
Fecha de Ingreso: noviembre-2005
Mensajes: 426
Antigüedad: 18 años, 5 meses
Puntos: 87
Respuesta: WP: Como jalar "Featured Image" para exerpt

dentro del loop simplemente colocas

Cita:
<?php if (has_post_thumbnail( $post->ID ) ): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>

<?php endif; ?>
y donde quieras la URL de la imagen (dentro del IF preferiblemente) simplemente colocas:

Cita:
echo $image[0]
Suerte