我有一个 WordPress 网站,我写了一个过滤器:function wc_add_string_to_price_newline( $price, $product ) { $product_id = $product->get_id(); if ($product_id == '1190') { $price .= "<br>(15% off until May 31, 2020)"; } return $price;}add_filter( 'woocommerce_get_price_html', 'wc_add_string_to_price_newline', 10, 2 );我想在 if 语句中添加第二个条件:如果当前日期早于 5-31-2020。如何将当前日期条件添加为第二个 if 语句参数?
1 回答
达令说
TA贡献1821条经验 获得超6个赞
if ($product_id == '1190' && date('Y-m-d') < '2020-05-31') { $price .= "<br>(15% off until May 31, 2020)"; }
- 1 回答
- 0 关注
- 85 浏览
添加回答
举报
0/150
提交
取消