Advertisement
sharulhafiz

wordpress redirect main site

Nov 28th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. function redirect_to_new_site()
  2. {
  3.     if ( !is_main_site() || is_admin() || is_user_logged_in() || $GLOBALS['pagenow'] === 'wp-login.php' ) {
  4.         return;
  5.     } else {
  6.         exit( wp_redirect( 'http://engineering.utm.my/mechanical/', 301 ) );
  7.     }
  8. }
  9. add_action( 'init', 'redirect_to_new_site' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement