Increase product variation limit in woocommerce
This is what the apply_filters() call is for. It’s a hook that lets you modify the value. In this case you want to use add_filter() with the woocommerce_rest_batch_items_limit hook name as the first argument, and then a callback function that returns a modified value: function wpse_304237_rest_batch_items_limit( $limit ) { $limit = 200; return $limit; } … Read more