הפילטר הזה יעקוף את ההגדרה "Include in Sitemap" שנמצאת תחת Rank Math SEO → Sitemap Settings → Post Types.
:
/**
* Filter decision if post type is excluded from the XML sitemap.
*
* @param bool $exclude Default false.
* @param string $type Post type name.
*/
add_filter( 'rank_math/sitemap/exclude_post_type', function( $exclude, $type ){
return $exclude;
}, 10, 2 );