Skip to content

Instantly share code, notes, and snippets.

@sunilw
Created October 24, 2013 23:34
Show Gist options
  • Save sunilw/7146988 to your computer and use it in GitHub Desktop.
Save sunilw/7146988 to your computer and use it in GitHub Desktop.
Wordpress get and formate post meta. Good for inspecting post meta.
<?php
// get post meta
$meta = get_post_meta( get_the_ID() );
echo "<pre>" ;
print_r($meta) ;
echo "</pre>" ;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment