Skip to content

Instantly share code, notes, and snippets.

@braginteractive
Created April 11, 2017 17:31
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 braginteractive/2f4c7127a81aa485284801b4d2753ee8 to your computer and use it in GitHub Desktop.
Save braginteractive/2f4c7127a81aa485284801b4d2753ee8 to your computer and use it in GitHub Desktop.
Display sample meta boxes on page
<?php
$text = get_post_meta( get_the_ID(), '_yourprefix_text', true );
$email = get_post_meta( get_the_ID(), '_yourprefix_email', true );
$url = get_post_meta( get_the_ID(), '_yourprefix_url', true );
echo esc_html( $text );
echo is_email( $email );
echo esc_url( $url );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment