Archived topic
Change the Site Title URL
2 replies · Started by Chad on June 27, 2016
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.
You can see a post inside the site here: http://tokyospark.com/salvatore-cuomo-bros-daikanyama/
I want it to link to http://tokyospark.com/premium/ instead of http://tokyospark.com.
Thanks!
Hi
Please give this a try
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';
}
Thanks Jamal, that works great.
