Skip to content

Instantly share code, notes, and snippets.

@braginteractive
Created June 1, 2017 19:24
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/1334d50d25402d82d929157ee19e47bb to your computer and use it in GitHub Desktop.
Save braginteractive/1334d50d25402d82d929157ee19e47bb to your computer and use it in GitHub Desktop.
Echo all Post Meta Data
<?php
$myvals = get_post_meta(get_the_ID());
foreach($myvals as $key=>$val)
{
echo $key . ' : ' . $val[0] . '<br/>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment