Admin Fix for WordPress


/ Published in: PHP
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. // Update the Site & Home URL in the database (wp-options table)
  2. // Remove after the database has been updated
  3. update_option('siteurl', 'http://www.yournewsite.com/' );
  4. update_option('home', 'http://www.yournewsite.com/' );

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.