Answers for "how to change wp-admin url"

PHP
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
0

wp site url link from admin

$url = site_url( '/secrets/', 'https' );
echo $url;
Posted by: Guest on July-01-2021

Browse Popular Code Answers by Language