Skip to content

Instantly share code, notes, and snippets.

@rachelmccollin
Created February 12, 2015 14:59
Show Gist options
  • Select an option

  • Save rachelmccollin/1b3844100bf7bcbcd535 to your computer and use it in GitHub Desktop.

Select an option

Save rachelmccollin/1b3844100bf7bcbcd535 to your computer and use it in GitHub Desktop.
WPMU DEV snippets
$price = get_post_meta( get_the_ID(), 'Price', true );
if( ! empty( $price ) ) {
echo '<p>Price: $' . $price . '</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment