Archived topic
Page Header Logo, Change URL.
1 reply · Started by ilovemusic on August 18, 2017
Hello!
We used the Generate Header option to change the logo for our Blog Page.
The logo replacement works just fine. It replaces our original logo with the logo we want!
However one little problem!
Is there any way i can redirect this new logo on this page to a different URL not my home page.
Home Page: demo.ilovemusic.edu.in
Blog Page: demo.ilovemusic.edu.in/blogger ( Need to change Url of Logo which is replaced on this page
Thank you!
Hi there,
Try this filter:
add_filter( 'generate_logo_href','generate_add_custom_logo_href' );
function generate_add_custom_logo_href()
{
if ( is_home() )
return 'http://yourURL.com';
}
Adding PHP: https://docs.generatepress.com/article/adding-php/