How can I can I check if a post has a thumbnail and if does do something? If doesn't do something else. This is what I have:
<?php if (has_post_thumbnail()) ?>
<?php the_thumbnail(); ?>
?>
<?php else ?>
<?php the_permalink();?>
<?php endif; ?>
Any help will be appreciate it.