<?php
$sale_price_dates_from = ( $date = get_post_meta( $thepostid, '_sale_price_dates_from', true ) ) ? date_i18n( 'Y-m-d', $date ) : '';
echo ($sale_price_dates_from);
?>
<?php
$sale_price_dates_to = ( $date = get_post_meta( $thepostid, '_sale_price_dates_to', true ) ) ? date_i18n( 'Y-m-d', $date ) : '';
echo ($sale_price_dates_to);
?>
this is my code for dates, i like to show Sale Price Dates in template but it is not working, do i miss something?
Any ideas are welcomed
Thanks