这是代码
edate = get_field('expire_date');
$currentDateTime = date('Y-m-d');
$currentMonth = date('M');
$earlier = new DateTime($edate);
$later = new DateTime($currentDateTime);
$daysrem = $later->diff($earlier)->format("%a");
$status = get_field('status');
?>
<tr>
<td class=""><?php the_field('expire_date')?></td>
<td><?php echo $daysrem; ?></td>
<td class="<?php the_field('status') ?>"><?php the_field('status') ?></td>
</tr>
如果到期日期是当月,则状态应更改为橙色背景颜色。怎么办,请帮忙!
德玛西亚99