Crop-Thumbnails
"Crop Thumbnails" made it easy to get exacly that specific image-detail you want to show in your featured image or gallery image.
Next Milestone 50K
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| post thumbnails | 140 | — | Tag | 16 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.9.7
- Last Updated
- Dec 03, 2025
- Requires WP
- 5.0+
- Tested Up To
- 6.8
- PHP Version
- 7.4.0 or higher
- Author
- Volkmar Kantor
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.6
- Reviews
- 67
- Support Threads
- 3
- Resolved
- 33%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about Crop-Thumbnails
add_action( 'after_setup_theme', 'my_adjust_image_sizes' );
function my_adjust_image_sizes() {
//add an cropped image-size with 800 x 250 Pixels
add_image_size( 'my-custom-image-size', 800, 250, true );
/**
* The following image sizes use a dynamic value.
* USE WITH CARE
* Also the plugin supports these image-sizes, i do not recommend them!
**/
//a dynamic cropped image size with 500 pixel height and the width of the original image
add_image_size( 'my-dynamic-width-1', 9999, 500, true );
//a dynamic cropped image with the same ratio as the original image and 500 pixel width
add_image_size( 'my-dynamic-zero-height-1', 500, 0, true );
}
After you add the image-size any futher image uploads will produce a cropped image "my-custom-image-size" which you can use in post-loop:
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'my-custom-image-size' );
}
If you had set one image dimension in add_image_size() to "0", the plugin will crop it in the ratio of the original image.
If you had set one image dimension in add_image_size() to "9999", the plugin will change the 9999 to the actual size of the current original image.
You are able to crop all images with the same ratio at once (default) or and any imagesize (and ratio) seperate.
How to use this plugin on ACF taxonomy-images
The "Adavanced Custom Fields" plugin has a functionality to add images to taxonomies. To add cropping functionality on these images you have to add a small code-snippet to your functions.php
Have a look on the github readme-page for details.
I've cropped the image, but the new version do not appear in the frontend.
If you had viewed your image on the site before, your browser has cached the image. You can hard refresh the page by hitting:
* "CTRL + F5" (on Windows)
* "Apple + R" or "command + R" (on Mac/Apple)
Is it possible to crop an non-cropped image-size?
No. The purpose of this plugin is to provide control for the wordpress automatic crop. If you want to crop let's say the full-size image you should
a) upload it in a better format in the first place
OR b) use the Standard Wordpress-Image editor to crop the image.
Where can I get developer information?
A documentation with a list of all actions and filters can be found on the Github page of the project.
I have two image-sizes that have nearly the same ratio. I want to make use of the feature "Crop all images with same ratio at once", but cause the ratios are slightly different they wont be selected together.
You can add the following filter in the functions.php of your theme to adjust the ratio of one or more specified image-sizes.
CAUTION: use only when the ratios are really close.
add_filter( 'crop_thumbnails_editor_printratio', 'my_crop_thumbnails_editor_printratio', 10, 2);
function my_crop_thumbnails_editor_printratio( $printRatio, $imageSizeName) {
if($imageSizeName === 'strange-image-ratio') {
$printRatio = '4:3';//do override ratio
}
return $printRatio;
}
I display the cropped image in the backend in an custom meta-box. It does not update after the modal-dialog closed. Is there a way to fix this
Yeah, there is a way. After the crop-thumbnails-modal closed it triggeres a javascript event on the body element. You could use jQuery to cache-break your cropped thumbnail (in backend-view).
The event called "cropThumbnailModalClosed". The plugin also provides a global function that could be called (only in post-edit-view and mediathek) to do the cache-break.
Example-Code:
$('body').on('cropThumbnailModalClosed',function() {
CROP_THUMBNAILS_DO_CACHE_BREAK( $('.your-image-selector') );
});
What languages are supported?
You may have a look on the Translation Page.
I want to contribute code.
Fantastic, i published the code on github. But be warned, i am carefully evaluate new features.
If you fork and planning to publish the forked plugin, please contact me.