Skip to content

Instantly share code, notes, and snippets.

@aabergkvist
Created January 29, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aabergkvist/c5d8a3fdbdc0f59ed408 to your computer and use it in GitHub Desktop.
Save aabergkvist/c5d8a3fdbdc0f59ed408 to your computer and use it in GitHub Desktop.
Göm författarens användarnamn
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