Blue Raven Pro tools page, featuring sitemap settings and IndexNow option for Bing, with toggles for updates.
Blue Raven Pro – Sitemap and Index Now tools

What Blue Raven Does

When you enable Sitemap updates in Blue Raven, the plugin:

  • ✅ Generates an XML sitemap automatically
  • ✅ Updates it every 24 hours to include your latest content
  • ✅ Supports image inclusion for better visual indexing
  • ✅ Will soon include taxonomies, content types like posts and products, and more

Once enabled, your sitemap will usually be available at: yourdomain.com/sitemap.xml

Tip: Submit your sitemap URL to Google Search Console and Bing Webmaster Tools for faster indexing.

Enabling Sitemap Updates

  1. In the Sitemap section, find the “Enable Sitemap Updates” toggle
  2. Slide it to the ON position
  3. That’s it Blue Raven handles the rest, regenerating your sitemap every 24 hours
Blue Raven Pro interface showing Site Map and IndexNow tool settings with toggles for site map updating and Bing integration.
Blue Raven Pro – Sitemap and Index Now tools

Speed Things Up with IndexNow

IndexNow is a relatively new protocol developed by Microsoft Bing, with support expanding to other search engines.

Instead of waiting days or weeks for bots to crawl your site, IndexNow lets you notify search engines immediatelywhen you:

  • Publish new content
  • Update existing pages
  • Delete outdated URLs

Blue Raven integrates directly with IndexNow for near-instant indexing.

How to Enable IndexNow in Blue Raven

  1. In the Sitemap section, find the IndexNow option
  2. Paste in your IndexNow API key from Bing Webmaster Tools
  3. Toggle “Enable IndexNow for Bing” to the ON position

You will need to generate your API key, you can go here https://www.bing.com/indexnow/getstarted#implementation.

API key generation and hosting instructions with key example and hosting options.
Get your API key for IndexNow

Why The Daily Indexing Might Not Be Working

If your WordPress daily tasks, like indexing, aren’t running, it could be because WP-Cron is disabled in your site. This happens when your wp-config.php has:

define( 'DISABLE_WP_CRON', true );

When this is set, WordPress won’t automatically run scheduled tasks.

How to fix it:

Set DISABLE_WP_CRON to FALSE

define( 'DISABLE_WP_CRON', false );

What this does:

  • WordPress will go back to running its “pseudo-cron” on every page load.
  • This is fine for small sites with regular traffic.
  • On very busy sites, it can slow down page loads because WP runs tasks during visits.
  • On very low-traffic sites, scheduled tasks might run late because no one is visiting.

💡 This is a temporary solution. There are some risks involved. We’ll provide more details soon, including how Blue Raven will address this in future updates.