php 在Google日历中加入产品选项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在Google日历中加入产品选项相关的知识,希望对你有一定的参考价值。
add_filter( 'easy_booking_calendar_event_description', 'add_custom_event_description', 10, 3 );
function add_custom_event_description( $description, $order_item, $order ) {
$description = '<p>Client: ' . $order->get_formatted_billing_full_name() . '</p>';
$meta_data = $order_item->get_formatted_meta_data();
if ( ! empty( $meta_data ) ) {
foreach ( $meta_data as $meta_id => $data ) {
$description .= '<p>' . $data->display_key . ': ' . $data->value .'</p>';
}
}
return $description;
}
以上是关于php 在Google日历中加入产品选项的主要内容,如果未能解决你的问题,请参考以下文章