Display woocommerce sale end date

后端 未结 2 878
独厮守ぢ
独厮守ぢ 2021-01-14 22:33

I found this thread in wordpress http://wordpress.org/support/topic/get-woocommerce-scheduled-sale-end-date?replies=15

but when I tried it, it did not work. Perhaps

2条回答
  •  失恋的感觉
    2021-01-14 23:01

    This works for me :)

        $thepostid = get_the_ID();
        $sale_price_dates_to    = ( $date = get_post_meta( $thepostid, '_sale_price_dates_to', true ) ) ? date_i18n( 'Y-m-d', $date ) : '';
    

提交回复
热议问题