mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
286 B
Text
6 lines
286 B
Text
add_filter( 'woocommerce_sale_flash', 'wc_sale_end_date', 9999, 3 );
|
|
|
|
function wc_sale_end_date( $html, $post, $product ) {
|
|
if ( $product->get_date_on_sale_to() ) return $html . ' (ends ' . gmdate( 'd M', $product->get_date_on_sale_to()->getTimestamp() ) . ')';
|
|
return $html;
|
|
}
|