Answers for "define wordpress home url"

PHP
4

define home url wp

define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );
Posted by: Guest on May-29-2020
1

define home url wordpress config.php

// Add the below to your wp-config.php file (replace example.com with your domain)
define('WP_HOME','http://example.com'); 
define('WP_SITEURL','http://example.com');
Posted by: Guest on December-15-2021

Browse Popular Code Answers by Language