• Resolved bhagyesh11698

    (@bhagyesh11698)


    I enabled Image CDN by Jetpack on my Games Review Website.

    After Enabling CDN, Number of Indexed Images is decreased in Search Console.

    Check out Screenshot From Search Console. Image Link

    See What Jetpack Support Team says about this Issue.

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

Viewing 1 replies (of 1 total)
  • If you are using the Jetpack CDN to serve your images, you’ll need to update the image path by using the following code your theme functions.php file to Yoast SEO can update the images path in the XML sitemap:

    function wpseo_cdn_filter( $uri ) {
    	return str_replace( 'http://example.com', 'http://cdn.example.com', $uri );
    }
    add_filter( 'wpseo_xml_sitemap_img_src', 'wpseo_cdn_filter' );
    

    Notice that you’ll need to replace the above code with your domain name and CDN URL.

Viewing 1 replies (of 1 total)

The topic ‘Images Not Indexed’ is closed to new replies.