Yogesh Chauhan's Blog

WordPress: How to change a blog address (URL)?

in WordPress on December 29, 2021

Similar Read:

WordPress: How to set WP_SITEURL?

What is WP_HOME?

WP_HOME and WP_SITEURL are similar in such a way that they both check the wp_options table in the database.

If you set the value for WP_HOME in wp-config.php file, it won’t affect the wp_options table in the database.

What is home address in WordPress?

home address is used to set the address for your blog. Typing that address in the browser will take users to your blog.

Similar to WP_SITEURL, WP_HOME value should include the https:// part and it should NOT include the trailing slash(/) at the end.

Defining WP_HOME helps improve WordPress performance since your site needs to make a fewer database call and can easily find the siteurl from the wp-config.php file.

How to define WP_HOME?


define( ‘WP_HOME’, ‘http://yogeshchauhan.com/blog’ );

How to define WP_HOME dynamically?

You can dynamically set WP_HOME based on $_SERVER[‘HTTP_HOST’].


define( 'WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] . '/path/to/blog' );


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
Use SwiperJS to create mobile touch sliders fastMiscellaneousCreate a galley with overlapping images using CSS gridCSSHow to convert a function component into a class in React?ReactSteps to Install Microsoft SQL Server on a MacOSSQL/MySQL4 ways to create Date Objects in JavaScriptJavaScriptHow to create a link tag button using CSS?CSSHow to zoom an element on hover using CSS?CSSHow to solve “framework not found” error in Swift?SwiftHow to verify your domain in Google Console with a TXT record?MiscellaneousPHP Login System using PDO Part 2: Login using Email or UsernamePHPHow to catch .keypress() on body using jQuery?jQueryAn Introduction to wp-config file in WordPressWordPress