Answers for "wordpress chnage the admin url"

PHP
6

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

Change WordPress Login Logo Url

/* Change WordPress Login Logo Url */
function alter_login_logo_url() {
    return home_url();
}
add_filter( 'login_headerurl', 'alter_login_logo_url' );
Posted by: Guest on March-24-2021

Browse Popular Code Answers by Language