警告:date()期望参数2在第104行为long / functions.php

时间:2017-05-04 03:57:51

标签: php wordpress

获取此警报..

  

警告:date()期望参数2为long,给定对象   第104行/home/physicoolco/public_html/wp-includes/functions.php

     

警告:date()期望参数2为long,给定对象   第106行/home/physicoolco/public_html/wp-includes/functions.php

     

警告:date()期望参数2为long,给定对象   第108行/home/physicoolco/public_html/wp-includes/functions.php

     

警告:date()期望参数2为long,给定对象   第109行/home/physicoolco/public_html/wp-includes/functions.php

为什么要显示这些警告?

在我改变它之前

第104行:

$datemonth = $wp_locale->get_month( date( 'm', $i ) );

我收到了上述警告

我更改后的第104行:

$datemonth = $wp_locale->get_month( date("m/d/y") );`

我没有警觉;只是一个空白区域,日期应该是..

1 个答案:

答案 0 :(得分:1)

嗨,这是您在第58行的woocommerce / checkout / thankyou.php下导航到主题文件的解决方案,并将其更改为: -

<strong><?php echo date_i18n( get_option( 'date_format' ), $order->get_date_created() ); ?></strong>
to:-

<strong><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></strong>