Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nickcernis
Created July 31, 2018 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickcernis/7748aa599161d3a0bb0a804c250333af to your computer and use it in GitHub Desktop.
Save nickcernis/7748aa599161d3a0bb0a804c250333af to your computer and use it in GitHub Desktop.
Fix Google Schema error for custom logos on WordPress sites.
<?php
/**
* Fix Google Schema error, "The property logo is not recognised by Google for an object of type WPHeader".
*
* @param string $html The logo HTML.
*
* @return string The modified HTML.
*/
add_filter( 'get_custom_logo', function( $html ) {
$html = str_replace( 'itemprop="logo"', 'itemprop="image"', $html );
return $html;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment