Skip to content

Instantly share code, notes, and snippets.

@fjaguero
Created October 9, 2012 11:17
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save fjaguero/3858039 to your computer and use it in GitHub Desktop.
Save fjaguero/3858039 to your computer and use it in GitHub Desktop.
Wordpress: Get ALT and TITLE for the post thumbnail
<?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