criativitando
Member
Posted 2 years ago #
Hello!
I'm using SeeZine theme with a slider displaying posts thumbnail in home. I want to know how to make a direct link to the post first image. I mean, in the code its like:
" title="<?php the_title(); ?>" > <img src="<?php echo get_post_meta($post->ID,'thumbnail', true); ?>" width="200" height="156" alt="<?php the_title(); ?>"/>
Is there a code that i can substitute for the
<?php the_permalink() ?>
to make the link goes direct to the image?
My url: http://www.criativitando.com/area51
criativitando
Member
Posted 2 years ago #
***correct code***
a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" > <img src="<?php echo get_post_meta($post->ID,'thumbnail', true); ?>" width="200" height="156" alt="<?php the_title(); ?>"/>