Skip to content

Instantly share code, notes, and snippets.

@wp-freund
Forked from fjaguero/wp_alt_title_thumb.php
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wp-freund/095f8b506fa909f4599f to your computer and use it in GitHub Desktop.
Save wp-freund/095f8b506fa909f4599f to your computer and use it in GitHub Desktop.
<?php if ( has_post_thumbnail() ) :?>
<a href="<?php the_permalink() ?>" class="thumb"><?php the_post_thumbnail('thumbnail', array(
'alt' => trim(strip_tags( $post->post_title )),
'title' => trim(strip_tags( $post->post_title )),
)); ?></a>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment