Skip to content

Instantly share code, notes, and snippets.

@marco-van-zomeren
Created December 6, 2020 11:21
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 marco-van-zomeren/a6c05ca31c7096d783a542e9520a1438 to your computer and use it in GitHub Desktop.
Save marco-van-zomeren/a6c05ca31c7096d783a542e9520a1438 to your computer and use it in GitHub Desktop.
<?php
$price = get_post_meta( get_the_ID(), '_price', true );
if ( $price > 0 ) {
echo wc_price( $price );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment