Disable author archives in WordPress

Disable author archives in WordPress on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'author_link', function ( $link ) {
    return home_url( 'about' );
});
 
add_action( 'template_redirect', function () {
    if ( is_author() ) {
        wp_redirect( home_url( 'about' ) );
        exit;
    }
});

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