Skip to content

Instantly share code, notes, and snippets.

@Pratik-Jain12
Last active July 24, 2019 07:53
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 Pratik-Jain12/332a6abbc2af07ea91b637ceb5cf7448 to your computer and use it in GitHub Desktop.
Save Pratik-Jain12/332a6abbc2af07ea91b637ceb5cf7448 to your computer and use it in GitHub Desktop.
Remove EDD schema.org microdata (In case your theme is already adding it)
<?php
// Remove EDD schema.org microdata (In case your theme is already adding it)
function _edd_add_schema_microdata( $microdata ) {
$microdata = false;
return $microdata;
}
add_filter( 'edd_add_schema_microdata', '_edd_add_schema_microdata' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment