我正在尝试在wordpress上使用UserFrontend构建自定义表单,我需要从WooCommerce的已知元键之一复制数组。唯一的问题是我不确定如何解决此问题,因为每个字段仅返回一个值。我真正需要的是让用户输入日期范围并将其转换为该元键值的数组的一部分。
我尝试创建自定义字段组,但它们未显示在UserFrontend中
这是可以在管理后端中访问的字段: date range picker/custom field
这就是我需要的样子...
_wc_booking_availability(这是meta键)
这是返回值:
array (
0 =>
array (
0 =>
array (
'type' => 'custom',
'bookable' => 'yes',
'priority' => 10,
'from' => '2019-05-13', //this was set using a date picker
'to' => '2019-05-27',
),
),
)