Skip to content

Instantly share code, notes, and snippets.

@diviengine
Last active June 21, 2022 11:24
Show Gist options
  • Save diviengine/8cae0c00d33cab2c2f76c4cdac6b9d9f to your computer and use it in GitHub Desktop.
Save diviengine/8cae0c00d33cab2c2f76c4cdac6b9d9f to your computer and use it in GitHub Desktop.
<?php
add_action( 'template_redirect', 'de_redirect_single_template' );
function de_redirect_single_template() {
if ( is_singular( 'cpt_slug' ) ) {
wp_redirect( home_url(), 301 );
exit;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment