Skip to content

Instantly share code, notes, and snippets.

@tarikcayir
Created March 11, 2015 14:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarikcayir/29682bf8c693646be2c1 to your computer and use it in GitHub Desktop.
Save tarikcayir/29682bf8c693646be2c1 to your computer and use it in GitHub Desktop.
<?php
add_action( 'template_redirect', 'redirect_all_page' );
function redirect_all_page() {
if ( !is_home() ) { // get_the_ID() != 'home_page_id'
wp_redirect( home_url(), 301 );
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment