Skip to content

Instantly share code, notes, and snippets.

@raaar
Created August 30, 2012 22:28
Show Gist options
  • Save raaar/3543157 to your computer and use it in GitHub Desktop.
Save raaar/3543157 to your computer and use it in GitHub Desktop.
WORDPRESS - Grab custom Field - Meta Custom
<?php $values = get_post_custom_values('Brewery'); ?>
<?php
if ( $values ) { ?>
<div class="custom-field">
<?php $key="Brewery";?>
<p><?php echo get_post_meta($post->ID, $key, true); ?></p>
</div>
<?php }?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment