最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

search multiple keywords with wp_query using one query

programmeradmin1浏览0评论

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'
    );
发布评论

评论列表(0)

  1. 暂无评论