Answers for "How do I change the WordPress Site URL?"

PHP
5

wordpress change site address

// Add to top of wp-config.php
define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );
Posted by: Guest on May-06-2020
0

change site url wordpress database

options table
1. siteurl
2. home

######## OR ########

// Add to top of wp-config.php
define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );
Posted by: Guest on December-18-2020
1

update url wordpress

<?php
update_option( 'siteurl', 'http://example.com' );
update_option( 'home', 'http://example.com' );
Posted by: Guest on December-22-2020

Code answers related to "How do I change the WordPress Site URL?"

Browse Popular Code Answers by Language