• Hi,

    Everytime I upload a photo to WordPress, my image gets blurry. Please see the page: https://thelucyspace.com/about/

    The first image I linked from my blogger website URL and the second image I uploaded directly through WordPress media library.

    What is the cause of the blurry-ness and how can I fix this?

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • To Fix blurry image after uploading in WordPress just add this function in functions.php file.

    add_filter( 'jpg_quality', 'high_quality_image' );
    
    function high_quality_image() {
       return 100;
    }
    Thread Starter thelucyspace

    (@thelucyspace)

    Hi

    Thanks for the reply. The code did not work, do I need to insert it at the beginning of the functions.php file or the end or the middle?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blurry Image after Upload’ is closed to new replies.