1/**
2 * Returns product price based on sales.
3 *
4 * @return string
5 */
6function the_dramatist_price_show() {
7 global $product;
8 if( $product->is_on_sale() ) {
9 return $product->get_sale_price();
10 }
11 return $product->get_regular_price();
12}
13