Created
June 29, 2020 18:25
-
-
Save cesgarma/04445a1ad8dc0c71d62ec4850b213dd3 to your computer and use it in GitHub Desktop.
Adding Schema to web pages.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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