skip to Main Content

Search WordPress Code Snippets – Quick Solutions for Developers


How to Exclude Specific URLs from AIOSEO Sitemap

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;
});

I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Back To Top