Plugin Author
YARPP
(@jeffparker)
YARPP does rely on the WordPress featured images (or thumbnails) to be set for each post. However, many users may have the WordPress thumbnails set to a different size than they want in their related post section. Our FAQ discusses how to set the thumbnail size for YARPP, run Regenerate Thumbnails, and be good to go.
Thank you for the reply. Perhaps I’m not being clear. You state that “YARPP does rely on the WordPress featured images (or thumbnails) to be set for each post.” This statement implies that “featured images” and “thumbnails” are one and the same. However, they are not. In the wordpress media library, users can edit their images and apply the edits ONLY to the thumbnail. So you can have an image that has an aspect ratio of 6:4 and set that same image’s thumbnail to 1:1 by cropping the image. Theme and plugin developers can then program their applications to pull different images for different purposes. For example, the 6:4 aspect version of the image can be used for the blog post, while the 1:1 aspect version of the image can be used as the thumbnail. I have addressed this issue with my theme’s developer who was able to quickly add code to ensure that these images were used appropriately.
If YARPP used the “Thumbnail” version of the images, then it would be displaying the thumbnails I have created as described above. But it is not. As it stands, I added code suggested in this forum by another member (below) in order to fix the issue for the standard image sizes I use on my site for the “featured images”. Again, my suggestion is to have YARRP call on the thumbnail as defined by the user in the wordpress media library. If one has not been defined then pull the images as you are currently pulling them.
yarpp-thumbnail {
height: 150px !important;
}
.attachment-yarpp-thumbnail {
height: 90px !important;
width: 120px !important;
}
.yarpp-thumbnail-title {
font-size: .8em !important;
max-height: 4em !important;
}