在woocommerce
中,我有一些变量产品,它们的自定义字段custom_field
类型的日期是变化的。用于创建具有多个日期的事件。
但是如何执行返回期货事件列表的查询?我认为在查询中可以做到这一点。
我测试这样的不同东西。
$today = date("Y/m/j");
$args = array(
'post_type' => "product",
'posts_per_page' => '10',
'meta_key' => 'custom_field',
'meta_compare' => '>=',
'meta_value' => '$today',
'orderby' => 'meta_value',
'order' => 'ASC',
);
我什么也没退。 我希望返回产品名称,自定义发布日期,库存和价格(如果有库存)。