Created
March 18, 2017 06:34
-
-
Save infoscigeek/6b5460684e24bf5d3192a8eb36460b3f to your computer and use it in GitHub Desktop.
Loads Schema from Custom Field on Each Page or Post
This file contains 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
<!-- 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