Hi Team,
I have a question regarding changing the redirects for logo links.
I’m already aware of how to change the logo link in functions.php but I have a more complex question.
I have multiple URLs for my site with unique landing pages.
For example:
if I’m on http://www.example.com/landingpage1/ I want my logo link to redirect to ‘www.example.com/landingpage1/’
If I’m on http://www.example.com/landingpage2/ I want my logo link to redirect to http://www.example.com/landingpage2/’
Is this possible?
See below for the real examples
Thanks
Hey jolian123,
You should be able to check what page you are on using the the is_page function: https://developer.wordpress.org/reference/functions/is_page/
So something like this:
if(is_page(12, 51)) {
//do something
}
Best regards,
Rikard