Tagged Questions
0
votes
3answers
144 views
Setting post thumbnail sizes in template file and functions.php
For my post I have a box for the post image and the size of the box is 214 x 73. I want the image to fit the width of the box and have it cropped at 73px height.
This is what I have so far in my ...
3
votes
3answers
2k views
set_post_thumbnail_size in percent, not pixels?
I've created a new custom post type and I need the post thumbnails or featured images generated by the get_the_post_thumbnail() function to be set in percent, rather than pixels, as I'm using a fluid ...
2
votes
1answer
1k views
How to create thumbnails with a fixed width, so all of them will have the same width?
right now, a thumbnail will be either 150px in height or in width, depending if it's landscape or portrait. Is there a way to make them always the same width and scale them in height accordingly, ...
8
votes
3answers
2k views
add_image_size() for specific Post Types
set_post_thumbnail_size( 80, 80, true ); // true for all post types
Suppose I have two post types in play on my blog: Post, Video and Product. I may want a 80x80 image size for my posts, but 100x100 ...