Advertisement
Guest User

Untitled

a guest
Mar 31st, 2014
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <a class="post-thumbnail" href="<?php the_permalink(); ?>">
  2. <?php
  3. // Output the featured image.
  4. if ( has_post_thumbnail() ) :
  5. if ( 'grid' == get_theme_mod( 'featured_content_layout' ) ) {
  6. the_post_thumbnail();
  7. } else {
  8. the_post_thumbnail( 'twentyfourteen-full-width' );
  9. }
  10. endif;
  11. ?>
  12. </a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement