Guest
Public paste!

Mu Tips Redirect Home

By: a guest | Jun 1st, 2008 | Syntax: PHP | Size: 0.21 KB | Hits: 320 | Expires: Never
Copy text to clipboard
  1. <?php
  2. add_action('signup_header', 'redirect_home');
  3. function redirect_home() {
  4.         global $current_site;
  5.        
  6.         wp_redirect( &quot;http://{$current_site-&gt;domain}{$current_site-&gt;path}&quot; );
  7.         exit();
  8. }
  9. ?>