Site icon Hip-Hop Website Design and Development

Change logo url link

I’m trying to change the logo url of the site to “mywebsite.com/side2”, but it is not working, can anyone tell me where is the error in the code below?

add_filter( 'login_headerurl', 'custom_loginlogo_url' );
function custom_loginlogo_url($url) {

return home_url( 'side2' );
}