Disable author by ID from the authors sitemap in Yoast SEO

Disable author by ID from the authors sitemap in Yoast SEO.

Snippet Type

Execute on Child Sites

Snippet

function sitemap_exclude_authors( $users ) {
   return array_filter( $users, function( $user ) {
        if ( $user->ID === 5 ) {
            return false;
        }

        return true;
    } );
}

add_filter( 'wpseo_sitemap_exclude_author', 'sitemap_exclude_authors' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.