23

How to Disable and Redirect Author Pages in WordPress

Powered by WPCodeBox

Learn how to disable WordPress author pages and redirect them to your site’s home page for improved SEO and site management.


<?php 

function author_page_redirect() {
    if ( is_author() ) {
        wp_redirect( home_url() );
    }
}
add_action( 'template_redirect', 'author_page_redirect' );

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.