Skip to content

Instantly share code, notes, and snippets.

@digitalinkwell
Created July 29, 2015 18:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save digitalinkwell/73c2654c6e0d872e251d to your computer and use it in GitHub Desktop.
Save digitalinkwell/73c2654c6e0d872e251d to your computer and use it in GitHub Desktop.
add_action(‘template_redirect’, ‘bwp_template_redirect’);
function bwp_template_redirect()
{
if (is_author())
{
wp_redirect( home_url() ); exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment