Answers for "add www to url wordpress site"

PHP
2

home url wordpress

$url = home_url();
echo $url; // Output: http://www.example.com

$url = home_url( '/' );
echo $url; // Output: http://www.example.com/

$url = home_url( $path = '/', $scheme = 'https' );
echo $url; // Output: https://www.example.com/

$url = home_url( $path = 'example', $scheme = 'relative' );
echo $url; // Output: /example
Posted by: Guest on February-08-2021
0

define url wordpress

//It is possible to set the site URL manually in the wp-config.php file.

//Add these two lines to your wp-config.php, where “example.com” is the correct location of your site.

define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );

//Important! Do not leave this code in the functions.php file. Remove them after the site is up and running again.

update_option( 'siteurl', 'http://example.com' );
update_option( 'home', 'http://example.com' );
Posted by: Guest on April-10-2021

Browse Popular Code Answers by Language