Reply To: How do I change the Blog Title Link

Home Forums Support How do I change the Blog Title Link Reply To: How do I change the Blog Title Link

Home Forums Support How do I change the Blog Title Link Reply To: How do I change the Blog Title Link

#150222
Tom
Lead Developer
Lead Developer

Hi there,

You can change your site title URL with a simple filter function.

add_filter( 'generate_logo_href','generate_custom_logo_href' );
function generate_custom_logo_href()
{
	// Enter the URL you want your logo to link to below
	return 'http://YOURURLHERE.com';
}

Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/