I use this wp_query to get results for a specific keyword and sort by price. I need to search multiple keywords at the same time and return results and sort them by product price. How is this possible using one wp_query? Any example appreciated.
$args = array(
's' => "t",
'post_type' => 'post',
'post_status' => 'publish',
'sentence' => true,
'paged'=>$paged,
'meta_query' => [
'product_price' => [ 'key' => 'product_price', 'value' => '0', 'compare' => '>' , 'type'=>'NUMERIC'],
],
'orderby' => 'product_price',
'order' => 'ASC'
);