Skip to content

Instantly share code, notes, and snippets.

@f4rr3ll1990
Created June 24, 2017 21:41
Show Gist options
  • Save f4rr3ll1990/d061266185ba8c167847aa2038235291 to your computer and use it in GitHub Desktop.
Save f4rr3ll1990/d061266185ba8c167847aa2038235291 to your computer and use it in GitHub Desktop.
<?php
$custom_fields = get_post_custom($post->ID);
foreach ( $custom_fields as $field_key => $field_values ) {
if(!isset($field_values[0])) continue;
if(in_array($field_key,array("_edit_lock", "_edit_last", "_thumbnail_id"))) continue;
echo "<strong>$field_key:</strong> $field_values[0] <br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment