Skip to content

Instantly share code, notes, and snippets.

@louisnovick
Created May 3, 2016 16:45
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 louisnovick/824aad31684a3cbadcf30a0e7f481943 to your computer and use it in GitHub Desktop.
Save louisnovick/824aad31684a3cbadcf30a0e7f481943 to your computer and use it in GitHub Desktop.
function wpse_128636_redirect_post() {
$queried_post_type = get_query_var('post_type');
if ( is_single() && 'post_type' == $queried_post_type ) {
wp_redirect( home_url(), 301 );
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment