/** * Filter to enable Rank Math SEO on Elementor templates */ add_filter( 'rank_math/excluded_post_types',function( $post_types) { $post_types['elementor_library'] = 'elementor_library'; return $post_types; }, 11 ); /** * Filter if XML sitemap transient cache is enabled. * * @param boolean $unsigned Enable cache or not, defaults to true */ add_filter( 'rank_math/sitemap/enable_caching', '__return_false');