2016-06-10 45 views
0

我想顯示自定義頁面,我已經加入後的觀點流行後和像WordPress的選項,我想表明的熱門信息爲本次,喜歡,如何通過wordpress中的多個元鍵顯示熱門帖子?

我想這個代碼,但它的排名只對視圖計數器;

$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' 
    ), 
), 
); 

感謝答案

回答

0

嘗試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' 
    ) 
); 
+0

像一個魅力的工作非常感謝你 –

相關問題