It looks like the site title is pulled from ‘Settings -> General’ but I want the link to point to something else.
The homepage of my site is an email list signup form with no navigation on it. “Behind” that page is a premium membership, where I’d want the site title to link to.
add_filter( 'generate_site_title_href','generate_custom_site_title_href' );
function generate_custom_site_title_href()
{
// Enter the URL you want your logo to link to below
return 'http://YOURURLHERE.com';
}
This reply was modified 6 years, 11 months ago by Jamal.