• Hi there, first of all, my compliments for something wordpress shouldve implemented a long time ago, hope they offer you a job! lol

    Anyhow, the topic title says it all.

    I have 3 thumbnails, kinda small.. would like each thumbnail to link to a bigger version of itself. I dont mind how big, pre-fixed WordPress sizes are okay also. Just bigger than a thumbnail should do it.

    Is this possible? If so how. Thanks a bunch!

    This is my current code btw:

    <div class="container_thumbs">
                        <div class="custom_thumbje"><a href="<?php the_permalink();?>"><?php if (class_exists('MultiPostThumbnails')
                        && MultiPostThumbnails::has_post_thumbnail('post', 'secondary-image')) :
                           MultiPostThumbnails::the_post_thumbnail('post', 'secondary-image', NULL, 'eigen_custom_size_thumbnail');
                        endif; ?></a></div>
    
                        <div class="custom_thumbje"><?php if (class_exists('MultiPostThumbnails')
                        && MultiPostThumbnails::has_post_thumbnail('post', 'tertiary-image')) :
                           MultiPostThumbnails::the_post_thumbnail('post', 'tertiary-image', NULL, 'eigen_custom_size_thumbnail');
                        endif; ?></div>
    
                        <div class="custom_thumbje"><?php if (class_exists('MultiPostThumbnails')
                        && MultiPostThumbnails::has_post_thumbnail('post', 'quaternary-image')) :
                           MultiPostThumbnails::the_post_thumbnail('post', 'quaternary-image', NULL, 'eigen_custom_size_thumbnail');
                        endif; ?></div>
                  </div>

    http://wordpress.org/extend/plugins/multiple-post-thumbnails/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Multiple Post Thumbnails] How to link to a bigger sized image’ is closed to new replies.