Answers for "wordpress change base url"

PHP
8

wp-config change url wp-config

define('WP_HOME','http://example.com'); 
define('WP_SITEURL','http://example.com');
Posted by: Guest on May-22-2020
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

Browse Popular Code Answers by Language