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

custom post types - How to do WP_Query with two meta fields with orderby clause

programmeradmin2浏览0评论

The goal is to first try to order by the custom meta field and if its not found then do order by the post date. Here is the query I did so far, but its not working.

$args = array( 
    'post_type' => 'xyz',
    'posts_per_page' => 5,
  'meta_query' => array(
    'relation' => 'AND',
    'query_one' => array(
      'key' => 'custom_meta',
      'compare' => 'EXISTS', 
    ), 
    'query_two' => array(
    'key' => 'post_date',
    ),
  ),
  'orderby' => array( 
    'query_one' => 'DESC',
    'query_two' => 'DESC',
  ),
  );
  $the_query = new WP_Query( $args );
发布评论

评论列表(0)

  1. 暂无评论