Full documentation is available at https://crucibleinsight.com/docs/.
Developer Sitemap provides a lightweight, standards-compliant XML sitemap solution for WordPress. Unlike full SEO suites, this plugin focuses solely on sitemap generation with a clean, intuitive interface.
When WooCommerce is installed and activated, Developer Sitemap automatically detects it and provides:
/sitemap-product.xmlOnce activated, your sitemap is available at:
yoursite.com/sitemap.xmlyoursite.com/sitemap-post.xmlyoursite.com/sitemap-page.xmlyoursite.com/sitemap-product.xml (when WooCommerce is active)yoursite.com/sitemap-taxonomy.xmlyoursite.com/sitemap-author.xmlFor detailed documentation, visit the https://crucibleinsight.com/docs/
developer_sitemap_url_providers
Modify the registered URL providers.
add_filter('developer_sitemap_url_providers', function($providers) {
// Add custom provider
$providers['custom'] = new MyCustomProvider();
return $providers;
});
developer_sitemap_urls
Filter URLs before they are included in a sitemap.
add_filter('developer_sitemap_urls', function($urls, $type) {
// Filter or modify URLs
return $urls;
}, 10, 2);
developer_sitemap_entry_attributes
Modify sitemap entry attributes.
add_filter('developer_sitemap_entry_attributes', function($attrs, $url) {
// Modify priority, changefreq, etc.
return $attrs;
}, 10, 2);
developer_sitemap_generated
Fires after a sitemap is generated.
developer_sitemap_cache_invalidated
Fires after the sitemap cache is cleared.
Developer Sitemap does not collect, store, or transmit any personal data. The plugin generates XML files containing public URLs from your WordPress site.