I am working with WordPress 3.3.1 and cannot resize the image I am trying to add to the page as the thumbnail, small, medium and large options are greyed out. the size of the image in question is 276×354.
I have created my own theme and have added <?php the_post_thumbnail(); ?>
template tag but to no avail. Does deactivating the visual editor have anything to do with this.
I have not come across this problem before and would appreciate any pointers on what could be causing this problem.
Thanks in advance.
nav
it can be caused by multiple reasons , some of which may be :
=> switch to default theme and check function again
=> check your PHP server settings .
set in Admin/Settings/Media.
=> check your default image sizes and / or upload a bigger image
=> disable all plugins and check function again.
=> Try another image
=> In functions.php
Maybe you have to add thumbnails support via functions.php
to get big_image size try:
well basically if you uploaded a file that’s 276×354 than wordspress wont make those other sized options since the image is already small.
if you want to get those sizes you need to add support for it in you functions.php file, and then upload again, or use a regenerate thumbnails plugin/code.
i also suggest you install an image resizing plugin, like Scissors 2, so you can make actual changes to the files you upload.
does this help?