【发布时间】:2019-01-10 16:25:57
【问题描述】:
myaccount>order页面上打印的日期格式为m/d/Y,需要改为d/m/Y。
在wordpress>configuration>date 格式上我已经输入了"d/m/Y/。我在woocommerce/myaccount/orders.php 上找到了这段代码:
<?php echo esc_html( wc_format_datetime( $order->get_date_created() ) ); ?>
我试着改成:
<?php echo esc_html( wc_format_datetime( $order->get_date_created()->format('d/m/Y') ) ); ?>
但效果不佳,我不知道为什么在订单页面上 woocommerce 没有遵循 WordPress 日期。
【问题讨论】:
标签: php date woocommerce format