I needed to sort the custom posts in a REST API response by a meta value, this is how I did it.
Tag: custom post type
WordPress REST API post orderby custom value
Ordering posts by menu_order doesn’t work out of the box with the WP REST API. To enable this you need to add a filter to rest_{post_type}_collection_params
for each post type you want to order by menu_order.
Continue reading "WordPress REST API post orderby custom value"