Welcome to Dagon Design. In addition to free scripts, WordPress plugins, and articles, we offer a variety of services including custom theme design, plugin creation, and PHP scripting. Contact me for more information.

Updated Sunday, February 22nd, 2009 at 8:20pm

Change Default Thumbnail Size in WordPress

WordPress 2.5 and later include a built-in option to change the size of thumbnails, but for those of you out there using an older version, it is quiet easy to change. It just requires modification of one WordPress file. When WordPress 2.1 was released, it changed the way this was done, and once again with the release of WordPress 2.3, so I have included instructions below for multiple versions.

Instructions for:

  If you have found this page useful, please consider donating. Thanks!


WordPress 2.0

Open /wp-admin/inline-uploading.php and look for the following code:

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);

The default max size is 128 x 96. You can change these numbers to whatever you like, although you must keep the proper aspect ratio (4 / 3).

For example, to double the size of the thumbnails, replace 128 with 256, and 96 with 192. Be sure to change both sets of numbers – they are each listed in the code twice.


WordPress 2.1 – 2.2

Open /wp-admin/admin-functions.php and look for the following code:

$max_side = apply_filters( 'wp_thumbnail_max_side_length', 
128, $attachment_id, $file );

The number specified here (128 by default) is the maximum size of either dimension. Just change this to whatever you like.


WordPress 2.3

Open /wp-admin/includes/image.php and look for the following code:

$max_side = apply_filters( 'wp_thumbnail_max_side_length', 
128, $attachment_id, $file );

The number specified here (128 by default) is the maximum size of either dimension. Just change this to whatever you like.

WordPress 2.5 and later

Version 2.5 and later have built-in support for the thumbnail size in the options.

  If you have found this page useful, please consider donating. Thanks!

Pages: « 8 7 6 5 4 [3] 2 1 » Show All

  1. Companies these days are using ergonomic furniture to ensure that there are no injuries from work related hazards. Use an ergonomic chair and feel better comfort in your back and shoulder

    sports masters

  2. Thanks for the tip, came here looking the php code, never thought about looking at the settings first RTFM all over again

    health administration

  3. word press

  4. Thanks so much! Great plugin.
    drm removal tool, remove drm protection

  5. 41
    person_guyz

    It’s good to be visiting her again since, it has been months for me. Well this article I’ve been waiting for so long. Need this item to complete my homework in school, and has the same issue with your item. Thanks, much.
    bachelor of nursing

  6. 40
    person_guyz

    Best-of-Programm jedoch probiert Josef Hader etwas, was viele Kollegen machen, er aber normalerweise nicht: Nummern spielen und dazwischen Lieder singen. gout diet
    clinical informatics

  7. 39
    jibran

    Companies these days are using ergonomic furniture to ensure that there are no injuries from work related hazards. Use an ergonomic chair and feel better comfort in your back and shoulder. resa

  8. this is awesome. just what I have been looking for for ages! I’m going to have a go at donating to you (although last few times i’ve

  9. useful for me thank you.

  10. 36
    wedseo

    Before you comment: If you are having an issue with a script, please make sure you have read the entire article. Also, please read through the comments because most common issues have already been discussed many times. Thanks.
    skin care products

  11. 35
    jibran

    Best-of-Programm jedoch probiert Josef Hader etwas, was viele Kollegen machen, er aber normalerweise nicht: Nummern spielen und dazwischen Lieder singen. gout diet

  12. Great job, thanks!
    burn iTunes to DVD MP4 to DVD

  13. i like this website.thanksl

  14. Thanks for the tip, came here looking the php code, never thought about looking at the settings first ;-) RTFM all over again

  15. 31
    Hilmon

    Using the TwentyTen Theme in WP3 they use the Featured Image for the homepage banner so in functions.php its set like this …
    set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true ); …. You need to take out all of the parameter so it just set_post_thumbnail_size(); … This will leave your image untouched!! :-)

Pages: « 8 7 6 5 4 [3] 2 1 » Show All

Leave a Comment

Before you comment: If you are having an issue with a script, please make sure you have read the entire article. Also, please read through the comments because most common issues have already been discussed many times. Thanks.


Be sure to wrap all code in <code></code> tags.