Never mind. Here is how I made it work:
- I duplicated post-item.php in my child theme
- Replaced the image code with a call to the full-size image. (https://prnt.sc/C5T8oP6l4TjB)
- Images are clear now
Hey, you can also do this without duplicating the template file 🙂
If you drop this into your functions.php, it’ll force the post image to use the full size:
function customize_post_image( $output, $template, $quick_ajax_id ) {
if ( $template === 'post-item' ) {
if ( has_post_thumbnail() ) {
$output = '<div class="qapl-post-image">' . get_the_post_thumbnail( get_the_ID(), 'full' ) . '</div>';
}
}
return $output;
}
add_filter( 'qapl_template_post_item_image', 'customize_post_image', 10, 3 );