1USE wp_database_name
2UPDATE wp_options SET option_value="new_value" WHERE option_name="siteurl";
3UPDATE wp_options SET option_value="new_value" WHERE option_name="home";
1// wp-content/theme_name/functions.php
2
3update_option( 'siteurl', 'new_value' );
4update_option( 'home', 'new_value' );
5
6// wp-config.php
7
8define( 'WP_HOME', 'new_value' );
9define( 'WP_SITEURL', 'new_value' );