change url wordpress code example
Example 1: wordpress change site address
define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );
Example 2: wp-config change url wp-config
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
Example 3: define url wordpress
define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );
update_option( 'siteurl', 'http://example.com' );
update_option( 'home', 'http://example.com' );
Example 4: wordpress change url in database
UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl');
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl', 'http://www.newurl');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl');
Example 5: change site url wordpress database
options table
1. siteurl
2. home
######## OR ########
define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );
Example 6: update url wordpress
<?php
update_option( 'siteurl', 'http://example.com' );
update_option( 'home', 'http://example.com' );