Skip to content

Instantly share code, notes, and snippets.

@infoscigeek
Created March 18, 2017 06:34
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 infoscigeek/6b5460684e24bf5d3192a8eb36460b3f to your computer and use it in GitHub Desktop.
Save infoscigeek/6b5460684e24bf5d3192a8eb36460b3f to your computer and use it in GitHub Desktop.
Loads Schema from Custom Field on Each Page or Post
<!-- Loads Schema from Custom Field on Each Page or Post -->
<?php
$schema = get_post_meta(get_the_ID(), 'schema', true);
if(!empty($schema)) {
echo $schema;
}
?>
<!-- End Schema Code -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment