Skip to content

Instantly share code, notes, and snippets.

@stompweb
Created April 29, 2014 13:05
Show Gist options
  • Save stompweb/11399733 to your computer and use it in GitHub Desktop.
Save stompweb/11399733 to your computer and use it in GitHub Desktop.
<?php
function s17_redirect_single_posts() {
if (is_single() {
wp_redirect( home_url( '/news/' ), 301 )
exit;
}
}
add_action( 'template_redirect', 's17_redirect_single_posts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment