The add-image-size tag has no wiki summary.
4
votes
5answers
386 views
Show two different sized featured images on homepage
I would like to have two different sized featured images on my homepage. I currently have all featured images set to 280x200. I would like to have SOME posts on the home page display a larger ...
1
vote
2answers
53 views
Image rotation fails to regenerate custom sized thumbnail
I'm using custom image dimensions in functions.php like this:
add_image_size( 'custom-size-thumbnail', 120, 120, true );
I uploaded some pictures with wrong orientation, so I used "edit" options to ...
-1
votes
2answers
134 views
Editing featured image
How can I edit the featured image? Usually I upload the image in media, there is one option which says "use as a featured image". This works fine but the output image is badly cropped. I want to know ...
3
votes
1answer
142 views
Define Wordpress image size in img tag
Is there a way to output a image in a pre-determined size (Ie; using add_image_size) using just the img tag?
For example, how can I make sure that the image that is echoed using this tag is the exact ...
1
vote
1answer
50 views
Process uploads with phpThumb before generating thumbnails
I was wondering if anyone knew a way (via function, plugin, or another method) of using phpThumb to process an image on upload, and then for Wordpress to generate it's usual image sizes from both the ...
1
vote
1answer
65 views
add_image_size adds size, but doesn't upload if source resolution is same as resize resolution
I'm trying to add a new image size of 300x300..
This works, but if the uploaded file is for example 300x300, it doesn't upload the resized image.. You'd say that isn't a problem because the original ...
0
votes
1answer
79 views
Custom image sizes ignored in WP 3.5
Since migrating to WP 3.5 I discovered that my custom image sizes get ignored - whenever I try and output one of them WP just defaults to the original image instead. Kind of frustrating... Any idea ...
0
votes
1answer
56 views
Retina ready for uploaded images which are cropped
I used the search but couldn't get the right answer for my issue.
I developped a theme, which on the portfolio template take the selected featured image of the different portfolio items and crop them ...
0
votes
1answer
89 views
Wordpress image resize hook
Any relevant help will be appreciated.
I want to make rounded cornres on images off certain image size. For example I have
add_image_size('xx', '320', '320', true);
Can I hook to this function and ...
1
vote
0answers
66 views
add_image_size wont work after get_intermediate_image_sizes
I am using the function
get_intermediate_image_sizes()
to check if an image size already exists, and if not create it. However when I use
add_image_size( 'test3', 150, 150, true );
after the ...
0
votes
0answers
87 views
Setting custom image sizes in child theme
I'm trying to create a child theme that has different image sizes from the custom image sizes created by the parent theme. The code below works just fine in setting the options and everything and the ...