By default, Jetpack’s new Sitemaps module supports Posts and Pages. It also supports Jetpack’s Custom Content Types if you use them on your site.
If you’d like to add support for another Custom Post Type, you can use the jetpack_sitemap_post_types
filter, like so:
function jeherve_add_cpt_sitemaps( $post_types ) { $post_types[] = 'your_post_type'; return $post_types; } add_filter( 'jetpack_sitemap_post_types', 'jeherve_add_cpt_sitemaps' );
This entry was posted in Code snippets and tagged Filter, jetpack_sitemap_post_types, Public, sitemaps. Bookmark the permalink.
Explore the benefits of Jetpack
Learn how Jetpack can help you protect, speed up, and grow your WordPress site.
Try it for $1.00 for the first month.
Compare plans