Skip to content

Instantly share code, notes, and snippets.

@cesgarma
Created June 29, 2020 18:25
Show Gist options
  • Save cesgarma/04445a1ad8dc0c71d62ec4850b213dd3 to your computer and use it in GitHub Desktop.
Save cesgarma/04445a1ad8dc0c71d62ec4850b213dd3 to your computer and use it in GitHub Desktop.
Adding Schema to web pages.
/* Add Schema to HTML head on DIVI Theme only!!! */
add_action('et_head_meta', 'custom_schema_json');
function custom_schema_json () {
$schema = get_post_meta(get_the_ID(), 'schema_field', true);
if(!empty($schema)) {
echo $schema;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment