// Inject custom static folder URLs into Rank Math XML Sitemap add_filter( 'rank_math/sitemap/xml_content', function( $content, $type ) { if ( $type === 'page' ) { $urls = [ 'https://stanfordglobaleducation.com/study-in-canada/', 'https://stanfordglobaleducation.com/study-in-usa/', 'https://stanfordglobaleducation.com/study-in-europe/' ]; foreach ( $urls as $url ) { if ( strpos( $content, $url ) === false ) { $content .= ' ' . $url . ' ' . date('c') . ' monthly 0.8 '; } } } return $content; }, 10, 2 );