Logo

Logo link (Closed)

Mikhail Kuzmin
·
Updated ·
3 replies
User Avatar
Mikhail Kuzmin

Hey guys,

I have a website on a subdomain, but I want a logo to lead to a main domain.

How can I change the Logo link URL?

User Avatar
Malik Ihtasham
STAFF

Hi Mikhail,

Try this code with your URL to the functions.php file.

add_filter( 'uicore_logo_link', function(){
    return 'https://my-new-url';
});
User Avatar
Mikhail Kuzmin

Thanks, that worked!!!