1.

How to change the homepage URL in WordPress?

Answer»

Here are the steps to successfully change the Homepage URL in Wordpress. GO to the function.php FILE in your WP THEME and use this code:

function redirect_homepage() {
   if( ! is_home() && ! is_front_page() )
   RETURN;
   wp_redirect( 'http://siteurl.com/news', 301 );
   exit;
}
add_action( 'template_redirect', 'redirect_homepage' );



Discussion

No Comment Found