如何在Woocommerce REST API中通过UPDATED_AT获取产品订单

时间:2019-02-25 13:21:15

标签: wordpress woocommerce product woocommerce-rest-api

在Woocommerce REST API v3文档中,只有某些字段可订购-date /id / include / title / slug

enter image description here

如果设置了 orderby=date ,则按 date_created 进行排序。

我想按 date_modified 订购。

是否可以通过API中未定义的自定义顺序获取产品?

?order=desc&filter[orderby]=date_modified

v3仍可接受这种参数吗?

对我不起作用。

或者我看到这个参数。

enter image description here

这可以用于自定义排序吗?在这种情况下,如何使用它?

谢谢。

1 个答案:

答案 0 :(得分:0)

您无法通过REST API按date_modified戳获得产品或订单。我最终对产品和订单所做的工作是使用自定义终结点创建扩展,并使用“ post_type”,它确实允许按“ date_modified_after”进行排序。这将返回订单ID,然后您将需要使用ID列表向REST api发出其他请求