为了账号安全,请及时绑定邮箱和手机立即绑定

如果当前日期早于某个日期条件,如何将其添加为 if 语句参数

如果当前日期早于某个日期条件,如何将其添加为 if 语句参数

PHP
慕标5832272 2022-12-23 14:00:00
我有一个 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)";
}


查看完整回答
反对 回复 2022-12-23
  • 1 回答
  • 0 关注
  • 85 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信