The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
356 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
46 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
120 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
131 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
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
75 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
55 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
83 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
61 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
71 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 ...
0
votes
0answers
50 views

Wordpress is incorrectly reading my largest add_image_size size. How do I fix this?

Strange problem. I have the following set of images sizes defined. add_theme_support( 'post-thumbnails' ); add_image_size( 'full-width', $width = 614, $height = 0, $crop = false ); add_image_size( ...
-1
votes
0answers
23 views

Add_the_image_size Responsive

I am using the code: add_image_size ('portfolio1', 600, 344, true); to show my portfolio thumbs on my website. But when I'm using tablets and smartphone i want these images width 100%. I'm using ...
-3
votes
0answers
30 views

How To add Extra Image Upload field In Themes header

I am New To wordpress And i want to Upload One more Image upload field in header For that i have used this code posted which is in Answer Part of this Post Add additional upload field to Custom ...