Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Created April 9, 2012 17:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jo-snips/2344826 to your computer and use it in GitHub Desktop.
Save jo-snips/2344826 to your computer and use it in GitHub Desktop.
The Events Calendar: Remove Specific Custom Fields From Array
<?php $fields = tribe_get_custom_fields( get_the_ID() ); ?>
<?php unset($fields['Name']); ?>
<?php foreach ($fields as $label => $value) {
echo $label;
echo $value;
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment