Skip to content

Instantly share code, notes, and snippets.

@alanef
Created February 14, 2019 20:43
Show Gist options
  • Select an option

  • Save alanef/4613247facf0a5ff5894d82dbfd2feac to your computer and use it in GitHub Desktop.

Select an option

Save alanef/4613247facf0a5ff5894d82dbfd2feac to your computer and use it in GitHub Desktop.
Disable specific author page
add_action( 'template_redirect', function() {
if ( is_author('nickname') ) { // change either nickname or user id see https://codex.wordpress.org/Function_Reference/is_author
status_header( 404 );
get_template_part( 404 );
exit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment