Skip to content

Instantly share code, notes, and snippets.

@matthewpizza
Created May 30, 2013 14:55
Show Gist options
  • Save matthewpizza/5678493 to your computer and use it in GitHub Desktop.
Save matthewpizza/5678493 to your computer and use it in GitHub Desktop.
<h3>All Post Meta</h3>
<?php $getPostCustom=get_post_custom(); // Get all the data ?>
<?php
foreach($getPostCustom as $name=>$value) {
echo "<strong>".$name."</strong>"." => ";
foreach($value as $nameAr=>$valueAr) {
echo "<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
echo $nameAr." => ";
echo var_dump($valueAr);
}
echo "<br /><br />";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment