Skip to content

Instantly share code, notes, and snippets.

@mtx-z
Last active August 21, 2019 14:19
Show Gist options
  • Save mtx-z/1bbaddd96c344a0a33a38b53ed0d353d to your computer and use it in GitHub Desktop.
Save mtx-z/1bbaddd96c344a0a33a38b53ed0d353d to your computer and use it in GitHub Desktop.
Wordpress/Woocommerce- redirect (remove) author pages
<?php
/**
* Disable access to Wordpress author page
*/
function remove_author_pages_page() {
global $wp_query;
if ( is_author() ) {
$wp_query->set_404();
status_header(404);
wp_redirect(home_url()); //get_option('home')
}
}
add_action( 'template_redirect', 'remove_author_pages_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment