Hi,
Please paste the code at functions.php of child theme. Make sure to use a child theme to make these changes: https://docs.themeisle.com/article/14-how-to-create-a-child-theme.
add_filter( 'get_custom_logo', 'mdshak_url' );
function mdshak_url() {
$custom_logo_id = get_theme_mod( 'custom_logo' );
$html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>',
'INSERT URL HERE', // DONT FORGET TO CHANGE THE URL
wp_get_attachment_image( $custom_logo_id, 'full', false, array(
'class' => 'custom-logo',
) )
);
return $html;
}
Thanks
Mohammad