WP_Query按多个自定义元键排序&字段

时间:2017-08-28 11:50:57

标签: wordpress

如何通过多个元键命令查询与title?

等字段相结合

例如,此顺序仅包含1个元键和1个字段:

$args = array
    (
        'post_type' => 'listing',
        'posts_per_page' => -1,
        'orderby' => 'meta_value_num title',
        'meta_key' => 'listing_status',
        'order' => 'ASC',
    );

$royal_listings = new WP_Query( $args );

我想通过多个元键和多个字段进行排序,并为每个元键/字段设置自定义ASC / DESC顺序。

0 个答案:

没有答案