frankyonnetti
1/5/2017 - 12:50 AM

WordPress page redirect.php

WordPress - page redirect #wordpress #redirect

<?php
 // stackoverflow.com/a/16739385

  function foo_redirect_homepage() {
    if( ! is_home() && ! is_front_page() )
      return;

  wp_redirect( 'http://redirect-here.com', 301 );
  exit;
}

add_action( 'template_redirect', 'foo_redirect_homepage' );