/ Published in: PHP
Add the code below to change the Home & Site URL that is configured in the database (wp-options table) by WordPress. Whenever you copy/move a site to a new hosting and the URL has changed you can use the code below to fix any strange redirects that might happen.
- Insert code to wp-loging.php
- Add your new url.
- Surf to www.yoursite.com/wp-login.php
(site & home url is now updated)
- Remove code from wp-login.php again
- Insert code to wp-loging.php
- Add your new url.
- Surf to www.yoursite.com/wp-login.php
(site & home url is now updated)
- Remove code from wp-login.php again
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Update the Site & Home URL in the database (wp-options table) // Remove after the database has been updated update_option('siteurl', 'http://www.yournewsite.com/' ); update_option('home', 'http://www.yournewsite.com/' );