I want to list post that filtered by Meta Data
I have tried many solutions i found here but i can't make it work.
The last solution i tried is to add this to my functions.php
add_filter( 'rest_product_query', function( $args, $request ){
if ( $stocks = $request->get_param( 'stocks' ) ) {
$args['meta_key'] = 'stocks';
$args['meta_value'] = $stocks;
}
return $args;
}, 10, 2 );
and i use this:
.../wp-json/wc/v3/products?status=publish&stocks=Ships%20From%20Abroad&consumer_key=xxx&consumer_secret=xxx
It list all the products, but not filtered. How can i make it work? Thanks!
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744925421a4601404.html
评论列表(0条)