Home » Categories » Managed WordPress » Advanced

CDN image indexing and Yoast SEO

To ensure images are being indexed properly by Google Search Console when using the Yoast SEO plugin and a CDN, you should add a small snippet of code to the top of the functions.php file. This code will allow Yoast SEO to properly generate the sitemap for your WordPress website.

  1. Modify the functions.php file by adding this snippet of code to the top of the file, and replacing example.com in both URLs with your own.
    function wpseo_cdn_filter($uri) {
      return str_replace('https://www.example.com', 'https://secureservercdn.net/example.com/', $uri);
    }
    
    add_filter( 'wpseo_xml_sitemap_img_src', 'wpseo_cdn_filter' );
        
  2. Save the changes.
  3. Go to the Yoast SEO Sitemap settings and regenerate the sitemap.

The sitemap will now use the CDN URL to reference the images. After this change it could take several days for the images to re-index in your Google Search Console.

Next steps

1 (4)
Article Rating (4 Votes)
Rate this article
  • Icon PDFExport to PDF
Related Articles
Create a child theme for WordPress
Added on Tue, Nov 17, 2020
Evaluate site performance with PageSpeed Insights
Added on Tue, Nov 17, 2020
Evaluate site performance with GTmetrix
Added on Tue, Nov 17, 2020
Find and replace with a WordPress plugin
Added on Tue, Nov 17, 2020
Find and replace for WordPress with a text editor
Added on Tue, Nov 17, 2020