Home › Forums › Pro Support › Retina Featured Images › Reply To: Retina Featured Images
March 6, 2019 at 6:08 pm
#8082
Keymaster
Hi there,
As long as you aren’t using the image sizing options in WPSP, we use core WordPress featured image code.
Since you’re using JPG images, WordPress will decrease the quality by default. You can increase it like this:
add_filter( 'jpeg_quality', function() {
return 100;
} );
Adding PHP: https://docs.wpshowposts.com/article/adding-php/