Answers for "wp home url"

PHP
3

wordpress get domain

// WORDPRESS GET SITE URL:
echo get_site_url(); // echo's http://www.yoursitename.com
Posted by: Guest on May-20-2020
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
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

Browse Popular Code Answers by Language