Skip to content

Instantly share code, notes, and snippets.

@jonahcoyote
Created March 7, 2012 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jonahcoyote/1995059 to your computer and use it in GitHub Desktop.
Save jonahcoyote/1995059 to your computer and use it in GitHub Desktop.
Wrap post thumbnail in custom field link
@crimsonleaf
Copy link

<?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) : ?>
    <a href="<?php echo tribe_get_custom_field('img_link') ?>"><?php the_post_thumbnail(); ?></a>
    <?php endif; ?>

@jo-snips
Copy link

<?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) : ?>
    <a href="<?php echo get_post_custom_values('img_link'); ?>"><?php the_post_thumbnail(); ?></a>
<?php endif; ?>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment