Unfortunately, that did not work. This is the site I’m working on: https://www.precisionvasectomy.com/
Any chance you could take a peek at the page source and make sure I placed the code in the proper place?
Thanks for the quick reply! Where do I need the add the code listed in that comment? This code:
add_filter( ‘get_custom_logo’, ‘wecodeart_com’ );
// Filter the output of logo to fix Googles Error about itemprop logo
function wecodeart_com() {
$custom_logo_id = get_theme_mod( ‘custom_logo’ );
$html = sprintf( ‘%2$s‘,
esc_url( home_url( ‘/’ ) ),
wp_get_attachment_image( $custom_logo_id, ‘full’, false, array(
‘class’ => ‘custom-logo’,
) )
);
return $html;
}