Skip to content

Instantly share code, notes, and snippets.

@robertdevore
Last active September 27, 2016 17:16
Show Gist options
  • Save robertdevore/b17161c8b38ec490b4c8e3e0dacc6114 to your computer and use it in GitHub Desktop.
Save robertdevore/b17161c8b38ec490b4c8e3e0dacc6114 to your computer and use it in GitHub Desktop.
<?php
/**
* Display the quote meta data in your theme
*/
if ( get_post_meta( get_the_ID(), '_thequote', true ) ) {
$quote = get_post_meta( $post->ID, '_thequote', true );
echo $quote;
}
/**
* Display the author meta data in your theme
*/
if ( get_post_meta( get_the_ID(), '_theauthor', true ) ) {
$author = get_post_meta( $post->ID, '_theauthor', true );
echo $author;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment