View Single Post
Old 09-14-2015, 04:54 AM  
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,241
Code:
add_action('template_redirect', 'custom_redirect_url');

function custom_redirect_url() {
        if(is_home() ) {
                wp_redirect('http://google.ca');
                exit();
        }
}
this example here would redirect the main domain

you would just have to adapt your function (the redir algorithm or how often into this)

this would go in your functions file
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote