Skip to content

Instantly share code, notes, and snippets.

@cmlewis
Created June 21, 2016 22:59
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 cmlewis/a9c5216e1ec20c9b63e252b7029fd563 to your computer and use it in GitHub Desktop.
Save cmlewis/a9c5216e1ec20c9b63e252b7029fd563 to your computer and use it in GitHub Desktop.
Wordpress - Display all custom fields
<?php
$custom_fields = get_post_custom();
foreach ( $custom_fields as $field_key => $field_values ) {
foreach ( $field_values as $key => $value )
echo $field_key . ' - ' . $value . '<br />';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment