Skip to content

Instantly share code, notes, and snippets.

@robskidmore
Last active November 4, 2016 01:49
Show Gist options
  • Save robskidmore/834a2ac7393337950444e02e4d24baeb to your computer and use it in GitHub Desktop.
Save robskidmore/834a2ac7393337950444e02e4d24baeb to your computer and use it in GitHub Desktop.
wordpress-visible-authors-no-posts
add_action('template_redirect', 'custom_page_template_redirect', 0);
function custom_page_template_redirect() {
global $wp_query;
if (isset($wp_query->query['author_name'])) {
status_header( 200 );
$wp_query->is_404=false;
get_template_part('author');
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment