Home › Forums › Support › How do I change the Blog Title Link › Reply To: How do I change the Blog Title Link
November 3, 2015 at 1:35 pm
#150222
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/
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development