Guest User

Untitled

a guest
May 27th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. $custom_fields = get_post_custom($post->ID);
  3. foreach ( $custom_fields as $field_key => $field_values ) {
  4. if(!isset($field_values[0])) continue;
  5. if(in_array($field_key,array("_edit_lock", "_edit_last", "_thumbnail_id"))) continue;
  6. echo "<strong>$field_key:</strong> $field_values[0] <br>";
  7. }
Add Comment
Please, Sign In to add comment