If you need to exclude certain URLs from your sitemap, this PHP code snippet will remove them, helping you control which URLs are indexed.
add_filter( 'aioseo_sitemap_urls', function ( $urls ) {
foreach ( $urls as $key => $url ) {
if ( strpos( $url['loc'], 'exclude-this-url' ) !== false ) {
unset( $urls[$key] );
}
}
return $urls;
});





















