• Is it possible to change the size of the thumbnails that are displayed in the posts.

    I like the new image uploader/manager, and the fact that a page is created for images, and comments can be made for them etc. I would just like the displayed thumbnails to be a little bigger.

Viewing 11 replies - 46 through 56 (of 56 total)
  • +1 for an image management plugin 🙂

    Fast fission’s suggestion worked for me too.

    If you are just looking to hard code a max height/width for your thumbs, you can edit the portion that is meant to be commented out.

    if ( $imagedata['width'] * $imagedata['height'] < 3 * 1024 * 1024 ) {
    if ( $imagedata['width'] > 128 && $imagedata['width'] >= $imagedata['height'] * 4 / 3 )
    $thumb = wp_create_thumbnail($file, 128);
    elseif ( $imagedata['height'] > 96 )
    $thumb = wp_create_thumbnail($file, 96);

    Replacing the 128 (max width) or 96 (max height) with your personal preferences.

    Saves the extra fiddling if you want standard sizes across your site. 🙂

    Great support forums BTW

    I just installed the plugin post_image and I realized that yes, indeed, the thumbnails are way too small. Is there any way to make an option on what size the thumbnail should be sized? It would be ever-so helpful to have this feature added.

    How would you get inline-uploading.php to ALSO RESIZE the original/uploaded file when it is save? (not just the thumbnail)

    Figured out how to resize the big imag after upload here: http://mu.wordpress.org/forums/topic.php?id=1588&replies=8#post-9026

    a plugin for this would be nice 🙂

    Try ImageManager from http://soderlind.no.

    Or if feeling adventurous, the beta of WindowsLiveWriter. http://windowslivewriter.spaces.live.com/blog/cns!D85741BB5E0BE8AA!174.entry – download linked from there.

    Note that the “raw” entry of graphics or maps will NOT VALIDATE unless you use the html option in the input window before uploading to whack the stuff MS seems to think is necessary….

    Also note that WindowsLiveWriter is the single simplest option for any of this I have EVER used.

    vkaryl, thanks for those links. ImageManager is just the kind of image plugin I was looking for. And I tried out WindowsLiveWriter, and it’s so easy to use it’s scary.

    I also support to add the feature to change the default thumbnail size…

    fastfission’s code worked for me as well. thanks a million…seriously i had been trying to figure that out on my own for about an hour. excellent support forums here.

    Please excuse my technical limitations, but I’m dying to change my thumbnail images to be normal size. I would like to try inserting the code Fast Fission recommended, but how do I go about editing the php file? Thanks!

Viewing 11 replies - 46 through 56 (of 56 total)
  • The topic ‘thumbnail size’ is closed to new replies.