• I just discovered the post thumbnail feature and I really like it! My question is.. is there is a way to post different sizes of thumbnails?

    I have mine set to 200×200 for blog posts and I wanted to use 100×100 on the homepage.

    Will they all be one size by default?

Viewing 4 replies - 1 through 4 (of 4 total)
  • virgild,

    WordPress provides a thumbnail during upload. Check your settings here: Settings > Media > Thumbnail size.

    In case I misunderstand, you can always size an image with CSS bringing the size down to 100×100 like so.

    .image-thumbnail {
    width: 100px;
    height: 100px;
    }

    Thread Starter virgild

    (@virgild)

    Oh sorry, I was referring to the new post thumbnail feature in wordpress 2.9.1

    virgild,

    You can use the CSS class of:

    .wp-post-image {
       width: 100px;
       height: 100px;
    }

    or you can be a little more specific within a template by using:
    <?php the_post_thumbnail(array( 100,100 )); ?> to specify where the thumbnail should appear and what size it should be.

    Dunhamzzz

    (@dunhamzzz)

    I found this post to be a great help for me on the same topic:

    staff-lounge.com/mark-jaquith-new-in-wordpress-2-9-post-thumbnail-images-36264/

    Go to the bottom where the more advanced stuff is, defining an additional thumbnail size for use on a different part of the site ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Multiple post thumbnail sizes?’ is closed to new replies.