text [WooCommerce预订]修改预订摘要中的日期

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text [WooCommerce预订]修改预订摘要中的日期相关的知识,希望对你有一定的参考价值。

/**
 * wc_bookings_summary_list_date is used to filter a booking's summary date. 
 * This example removes the end date for a multi-day booking.
 * 
 * @param  string $booking_date  The formatted date that is displayed by default.
 * @param  int    $booking_start Timestamp for the booking start time/date.
 * @param  int    $booking_end   Timestamp for the booking end time/date.
 * @return string                The modified date string.
 */
function modify_summary_date_20170821( $booking_date, $booking_start, $booking_end ) {
	return date( 'F j, Y', $booking_start );
}
add_filter( 'wc_bookings_summary_list_date', 'modify_summary_date_20170821', 10, 3 );

以上是关于text [WooCommerce预订]修改预订摘要中的日期的主要内容,如果未能解决你的问题,请参考以下文章

FacetWp 预订不适用于 woocommerce 预订?

php WooCommerce预订 - 首次预订的默认日历

woocommerce 预订状态更改 woocommerce 订单状态

php [WooCommerce预订]自动确认通过COD购买的预订

php [WooCommerce预订]将日历默认为第一次预订

将自定义“预订”按钮添加到 WooCommerce 产品单页