如何在 wordpress 中通过多个元键显示热门帖子?

how to display popular posts by multiple meta keys in wordpress?

我想在自定义页面中显示流行的 post,我在 wordpress 中添加了 post 视图和 post 喜欢的选项,我想显示流行的 posts基于观点和喜欢,

我试过这段代码,但它只针对浏览量计数器排名;

$args = array(
  'posts_per_page'=>5,
    'orderby' => 'meta_value',
  'order' => 'DESC',
  'meta_query'      => array(
    'relation'    => 'AND',
    '_post_views' => array(
      'key'     => '_post_views',
      'type'    => 'NUMERIC',
      'compare' => 'LIKE'
    ),
    '_post_like_count'    => array(
      'key'     => '_post_like_count',
      'type'    => 'NUMERIC',
      'compare' => 'LIKE'
    ),
),
);

感谢回答

尝试 new orderby feature:

$args = array(
    'posts_per_page'  => 5,
    'meta_query'      => array(
        'relation'    => 'AND',
        '_post_views' => array(
            'key'     => '_post_views',
            'type'    => 'NUMERIC',
            'compare' => 'LIKE'
        ),
        '_post_like_count' => array(
            'key'     => '_post_like_count',
            'type'    => 'NUMERIC',
            'compare' => 'LIKE'
        ),
    ),
    'orderby' => array(
        '_post_views' => 'DESC',
        '_post_like_count' => 'DESC'
    )
);