Cropped thumbnail not updating
-
I have used this plugin before and it used to work, but I don’t know why its not working now on a new wordpress site I am working on.
I have the following in my functions.php:
if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 300, 200, true); add_image_size('article-full', 300, 0, false); }I want to enable the user to crop the default
post-thumbnailso from the configuration I have hidden thethumbnailand allowed onlypost-thumbnailto show. (Not that this has any effect, I tried allowingthumbnailtoo but it doesn’t make any difference).When I click on Crop Thumbnail I can crop the thumbnail as I want, and click Save Crop. However, the featured image on the Admin screen of the post and also the post index page which uses
the_post_thumbnail()still show the old crop. I am not using any Caching plugins yet. I click Ctrl-F5 to clear the cache just in case but to no avail.The strange thing is that if I click on ‘Crop Thumbnail’ again, the Crop Thumbnails dialog box shows the new crop under ‘post-thumbnail’, it is the actual wordpress featured image in admin, and in the actual site that seem to retain the old crop for some reason.
What could be the cause of this?
The topic ‘Cropped thumbnail not updating’ is closed to new replies.