Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/07/2016, 19:54
nando87dc
 
Fecha de Ingreso: marzo-2007
Mensajes: 13
Antigüedad: 17 años, 9 meses
Puntos: 0
Respuesta: Recuperar enlace a entradas (Wordpress)

me anduvo este código por ahora

Código:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
	

<?php if ( has_post_thumbnail() ) { // Verifica que haya un thumbnail (imagen destacada) asignada a ala entrada. ?>
		
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_post_thumbnail( 'thumbnail' ); } ?>
</a>
	
<?php endwhile; else: ?>
<?php endif; ?>